Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
GRAPHDATA
GRAPHDATA_OUTPUT

lib
build
models

.venv
.vscode
.cache

GraphReasoning.egg-info
2 changes: 1 addition & 1 deletion Notebooks/GraphReasoning - Graph Analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"source": [
"#Hugging Face repo\n",
"repository_id = \"lamm-mit/GraphReasoning\"\n",
"data_dir='./GRAPHDATA/' \n",
"data_dir='./GRAPHDATA' \n",
"\n",
"data_dir_output='./GRAPHDATA_OUTPUT/'\n",
"\n",
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,23 @@
'torchaudio',
'huggingface_hub',
'langchain',
'langchain-community',
'pyvis',
'yachalk',
'pytesseract',
'llama-index',
'llama-index-embeddings-huggingface',
'tqdm',
'ipython',
'scikit-learn',
'scipy',
'seaborn',
'uuid',
'pdfminer.six',
'community',
'guidance',
'python-louvain',
'wkhtmltopdf'
'wkhtmltopdf',
'llama-cpp-python',
],
description='GraphReasoning: Use LLM to reason over graphs, combined with multi-agent modeling.',
long_description=long_description,
Expand Down