Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
iamviveksrk
/
test
like
0
Runtime error
App
Files
Files
Community
28b8815
test
/
document_store.py
iamviveksrk
Create document_store.py
2bc0739
almost 2 years ago
raw
Copy download link
history
blame
187 Bytes
from
haystack.document_stores
import
InMemoryDocumentStore
import
joblib
docs = joblib.load(
'docs.joblib'
)
document_store = InMemoryDocumentStore()
document_store.write_documents(docs)