mjbuehler commited on
Commit
122b7c9
·
verified ·
1 Parent(s): 0bf541d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -10
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
- data_dir='./GRAPHDATA/'
67
- graph_name='BioGraph.graphml'
68
- filename = f"{data_dir}/{graph_name}"
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
- data_dir='./GRAPHDATA/'
76
- embedding_file='BioGraph_embeddings_ge-large-en-v1.5.pkl'
77
- filename = f"{data_dir}/{embedding_file}"
78
- file_path = hf_hub_download(repo_id=repository_id, filename=filename, local_dir='./')
79
  ```
80
-
81
  ### Additional background
82
 
83
  ![Fig_2](https://github.com/user-attachments/assets/88f6a9f3-77b5-4b9c-ad7a-73e4b0841f0b)
 
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
  ![Fig_2](https://github.com/user-attachments/assets/88f6a9f3-77b5-4b9c-ad7a-73e4b0841f0b)