Update README.md
Browse files
README.md
CHANGED
@@ -20,6 +20,11 @@ The parameters passed in the url request are :
|
|
20 |
|
21 |
The embeddings corpus hal_embeddings.pkl stores the embeddings of the "combined" column values converted in vectors with the sentence-transformers/all-MiniLM-L6-v2 embeddings model.
|
22 |
|
|
|
|
|
|
|
|
|
|
|
23 |
## Metadata extraction
|
24 |
|
25 |
```
|
@@ -150,3 +155,5 @@ article_data_list
|
|
150 |
```
|
151 |
## KnowledgeGraphIndex
|
152 |
|
|
|
|
|
|
20 |
|
21 |
The embeddings corpus hal_embeddings.pkl stores the embeddings of the "combined" column values converted in vectors with the sentence-transformers/all-MiniLM-L6-v2 embeddings model.
|
22 |
|
23 |
+
Furthermore, all the dataset (except the "abstract" and "combined" columns) has been converted in a Knowledge Graph and stored in a Neo4j Graph store which persists texts and embeddings.
|
24 |
+
The text embeddings model used is nomic-embed-text-v1.5.
|
25 |
+
The Knowledge Graph Index is persiste
|
26 |
+
|
27 |
+
|
28 |
## Metadata extraction
|
29 |
|
30 |
```
|
|
|
155 |
```
|
156 |
## KnowledgeGraphIndex
|
157 |
|
158 |
+
The KnowledgeGraphIndex is persisted in the /index_storage folder, and can be easely reloaded in a Neo4j database and/or reloaded to be queried by a LlamaIndex KnowledgeGraphQueryEngine.
|
159 |
+
|