Update README.md
Browse files
README.md
CHANGED
|
@@ -62,22 +62,19 @@ sudo apt-get install wkhtmltopdf
|
|
| 62 |
```
|
| 63 |
#### Graph file:
|
| 64 |
```
|
| 65 |
-
from huggingface_hub import hf_hub_download
|
| 66 |
-
|
| 67 |
-
graph_name
|
| 68 |
-
|
| 69 |
-
file_path = hf_hub_download(repo_id=repository_id, filename=filename, local_dir='./')
|
| 70 |
```
|
| 71 |
|
| 72 |
#### Embeddings:
|
| 73 |
```
|
| 74 |
from huggingface_hub import hf_hub_download
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
file_path = hf_hub_download(repo_id=repository_id, filename=filename, local_dir='./')
|
| 79 |
```
|
| 80 |
-
|
| 81 |
### Additional background
|
| 82 |
|
| 83 |

|
|
|
|
| 62 |
```
|
| 63 |
#### Graph file:
|
| 64 |
```
|
| 65 |
+
from huggingface_hub import hf_hub_download
|
| 66 |
+
graph_name='large_graph_simple_giant.graphml'
|
| 67 |
+
filename = f"{graph_name}"
|
| 68 |
+
file_path = hf_hub_download(repo_id='lamm-mit/bio-graph-1K', filename=filename, local_dir='./graph_giant_component')
|
|
|
|
| 69 |
```
|
| 70 |
|
| 71 |
#### Embeddings:
|
| 72 |
```
|
| 73 |
from huggingface_hub import hf_hub_download
|
| 74 |
+
embedding_name='embeddings_simple_giant_ge-large-en-v1.5.pkl'
|
| 75 |
+
filename = f"{embedding_name}"
|
| 76 |
+
file_path = hf_hub_download(repo_id='lamm-mit/bio-graph-1K', filename=filename, local_dir='./graph_giant_component')
|
|
|
|
| 77 |
```
|
|
|
|
| 78 |
### Additional background
|
| 79 |
|
| 80 |

|