elonlit commited on
Commit
404c7a8
·
verified ·
1 Parent(s): e4df113

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -9
README.md CHANGED
@@ -17,10 +17,10 @@ pipeline_tag: feature-extraction
17
 
18
  # GeneJEPA — A Perceiver-style JEPA for scRNA-seq
19
 
20
- **GeneJEPA** is a Joint-Embedding Predictive Architecture (JEPA) trained for self-supervised representation learning on single-cell RNA-seq.
21
- It uses a Perceiver-style encoder to handle sparse, high-dimensional gene count vectors and learns from masked block prediction—no labels required.
22
 
23
- > **Why?** Produce compact cell embeddings you can use for clustering, transfer learning, linear probes, and downstream biological tasks.
24
 
25
  ---
26
 
@@ -51,15 +51,13 @@ This model repo intentionally contains **artifacts only** (no training code):
51
  ```python
52
  from huggingface_hub import hf_hub_download
53
 
54
- ckpt_path = hf_hub_download(repo_id="<your-username>/<your-model-id>",
55
  filename="genejepa-epoch=49.ckpt")
56
- meta_path = hf_hub_download(repo_id="<your-username>/<your-model-id>",
57
  filename="gene_metadata.parquet")
58
- stats_path = hf_hub_download(repo_id="<your-username>/<your-model-id>",
59
  filename="global_stats.json")
60
  ```
61
  ## Contact
62
 
63
- elonlit@biostate.ai
64
-
65
-
 
17
 
18
  # GeneJEPA — A Perceiver-style JEPA for scRNA-seq
19
 
20
+ **GeneJEPA** is a Joint-Embedding Predictive Architecture (JEPA) trained for self-supervised representation learning on scRNA-seq.
21
+ It uses a Perceiver-style encoder to handle sparse, high-dimensional gene count vectors and learns from masked block prediction.
22
 
23
+ **Why?** Produce compact cell embeddings you can use for clustering, transfer learning, linear probes, and downstream biological tasks.
24
 
25
  ---
26
 
 
51
  ```python
52
  from huggingface_hub import hf_hub_download
53
 
54
+ ckpt_path = hf_hub_download(repo_id="elonlit/GeneJEPA",
55
  filename="genejepa-epoch=49.ckpt")
56
+ meta_path = hf_hub_download(repo_id="elonlit/GeneJEPA",
57
  filename="gene_metadata.parquet")
58
+ stats_path = hf_hub_download(repo_id="elonlit/GeneJEPA",
59
  filename="global_stats.json")
60
  ```
61
  ## Contact
62
 
63
+ elonlit@biostate.ai