Ni-os commited on
Commit
074701b
·
verified ·
1 Parent(s): f00e091

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -3
README.md CHANGED
@@ -1,3 +1,22 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # LegNet - Cell Type Specific Models
5
+
6
+ LegNet model with weights trained on different cell types.
7
+
8
+ ## Available Cell Types:
9
+ - `hepg2` - HepG2 cell line
10
+ - `k562` - K562 cell line
11
+ - `wtc11` - WTC11 cell line
12
+
13
+ ## Usage:
14
+
15
+ ```python
16
+ from model_loader import load_cell_type_model
17
+
18
+ # Load model for HepG2
19
+ model = load_cell_type_model("hepg2")
20
+
21
+ # Load model for K562
22
+ model = load_cell_type_model("k562")