├── .gitignore ├── README.md ├── requirements.txt └── tutorial ├── 1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial) ├── LinkedIn people profiles datasets.csv ├── clean_data.csv └── notebook.ipynb ├── 2_convert_any_text_into_a_kg ├── clean_result.txt ├── clean_summary.txt ├── cypher_query.txt ├── notebook.ipynb └── raw_data │ ├── 2404.14047v1.pdf │ ├── raw_result.txt │ └── raw_summary.txt └── 3_finetune_llama3_text2cypher ├── notebook.ipynb └── text2cypher_gpt4turbo.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/requirements.txt -------------------------------------------------------------------------------- /tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/LinkedIn people profiles datasets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/LinkedIn people profiles datasets.csv -------------------------------------------------------------------------------- /tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/clean_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/clean_data.csv -------------------------------------------------------------------------------- /tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/1_The easiest way to chat with Knowledge Graph using LLMs (python tutorial)/notebook.ipynb -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/clean_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/clean_result.txt -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/clean_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/clean_summary.txt -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/cypher_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/cypher_query.txt -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/notebook.ipynb -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/raw_data/2404.14047v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/raw_data/2404.14047v1.pdf -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/raw_data/raw_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/raw_data/raw_result.txt -------------------------------------------------------------------------------- /tutorial/2_convert_any_text_into_a_kg/raw_data/raw_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/2_convert_any_text_into_a_kg/raw_data/raw_summary.txt -------------------------------------------------------------------------------- /tutorial/3_finetune_llama3_text2cypher/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/3_finetune_llama3_text2cypher/notebook.ipynb -------------------------------------------------------------------------------- /tutorial/3_finetune_llama3_text2cypher/text2cypher_gpt4turbo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectwilsen/KnowledgeGraphLLM/HEAD/tutorial/3_finetune_llama3_text2cypher/text2cypher_gpt4turbo.csv --------------------------------------------------------------------------------