avantikalal commited on
Commit
2e92d6f
·
verified ·
1 Parent(s): 3e53405

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -5
README.md CHANGED
@@ -1,5 +1,4 @@
1
  ---
2
- # 1. Metadata Block
3
  license: mit
4
  library_name: pytorch-lightning
5
  pipeline_tag: tabular-classification
@@ -7,7 +6,7 @@ tags:
7
  - biology
8
  - genomics
9
  datasets:
10
- - Genentech/human-chromhmm-fullstack-data
11
  base_model:
12
  - Genentech/enformer-model
13
  ---
@@ -15,11 +14,11 @@ base_model:
15
  # human-chromhmm-fullstack-model
16
 
17
  ## Model Description
18
- This model is a multi-class classifier trained to classify genomic DNA sequences into one of 16 classes. It was trained by fine-tuning the Enformer model using the `grelu` library on top of the human ChromHMM fullstack annotation dataset.
19
 
20
  - **Architecture:** Fine-tuned Enformer
21
  - **Input:** Genomic sequences (hg38)
22
- - **Output:** Probability across 16 class labels.
23
 
24
  ## Repository Content
25
  1. `model.ckpt`: The trained model weights and hyperparameters (PyTorch Lightning checkpoint).
@@ -34,7 +33,7 @@ from grelu.lightning import LightningModel
34
  from huggingface_hub import hf_hub_download
35
 
36
  ckpt_path = hf_hub_download(
37
- repo_id="Genentech/human-chromhmm-fullstack-model",
38
  filename="model.ckpt"
39
  )
40
 
 
1
  ---
 
2
  license: mit
3
  library_name: pytorch-lightning
4
  pipeline_tag: tabular-classification
 
6
  - biology
7
  - genomics
8
  datasets:
9
+ - Genentech/human-atac-catlas-data
10
  base_model:
11
  - Genentech/enformer-model
12
  ---
 
14
  # human-chromhmm-fullstack-model
15
 
16
  ## Model Description
17
+ This model is a multi-task classifier trained to predict the binary accessibility of genomic DNA sequences in 204 cell types. It was trained by fine-tuning the Enformer model using the `grelu` library on top of the human ChromHMM fullstack annotation dataset.
18
 
19
  - **Architecture:** Fine-tuned Enformer
20
  - **Input:** Genomic sequences (hg38)
21
+ - **Output:** Probability of accessibility in 204 cell types.
22
 
23
  ## Repository Content
24
  1. `model.ckpt`: The trained model weights and hyperparameters (PyTorch Lightning checkpoint).
 
33
  from huggingface_hub import hf_hub_download
34
 
35
  ckpt_path = hf_hub_download(
36
+ repo_id="Genentech/human-atac-catlas-model",
37
  filename="model.ckpt"
38
  )
39