Spaces:
Running
Running
File size: 594 Bytes
b4b5bdf a3a378d b4b5bdf fc1544a b4b5bdf a3a378d fc1544a 2f93ee4 51727c4 b4b5bdf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import pandas as pd
from buster.documents_manager import DeepLakeDocumentsManager
if __name__ == "__main__":
vector_store_path = "wiki_tai_langchain"
chunk_file = "./data/wiki_tai_langchain.csv"
overwrite = True
df = pd.read_csv(chunk_file)
print(f"before drop: {len(df)}")
df = df.dropna()
print(f"after drop: {len(df)}")
dm = DeepLakeDocumentsManager(vector_store_path, overwrite=overwrite, required_columns=["url", "source", "content", "title"])
dm.batch_add(df)
zipped_file_path = dm.to_zip()
print(f"Contents zipped to: {zipped_file_path}")
|