mmtf commited on
Commit
979ad4e
·
verified ·
1 Parent(s): 8dcd83c

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: "stargo-embeddings"
3
+ tags:
4
+ - star-go
5
+ - protein
6
+ - gene-ontology
7
+ - bioinformatics
8
+ - embeddings
9
+ ---
10
+
11
+ # stargo-embeddings
12
+
13
+ Dataset repository containing STAR-GO related embedding assets. The `metadata.csv` is loadable via `datasets.load_dataset`, while large binaries (e.g. `.h5`, `.npy`) are stored as downloadable files.
14
+
15
+ ## How to use
16
+
17
+ Load the metadata table:
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+
22
+ ds = load_dataset("<your-org-or-username>/<your-dataset-repo>")
23
+ print(ds)
24
+ ```
25
+
26
+ Download the large binary assets referenced in the table with `hf_hub_download`.