vr-scientist commited on
Commit
f4b3670
·
verified ·
1 Parent(s): feda0fe

Add BPNet model ENCSR582FZD (ENCSR697YIN)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ fold_0/saved_model/variables/variables.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
37
+ fold_1/saved_model/variables/variables.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
38
+ fold_2/saved_model/variables/variables.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
39
+ fold_3/saved_model/variables/variables.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
40
+ fold_4/saved_model/variables/variables.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ library_name: bpnet
4
+ tags:
5
+ - bpnet
6
+ - dna
7
+ - genomics
8
+ - transcription-factor-binding
9
+ - encode
10
+ - ChIP-seq
11
+ - hg38
12
+ - qc-passed
13
+ - CTCF
14
+ ---
15
+
16
+ # ENCODE BPNet -- CTCF ChIP-seq in breast epithelium (ENCSR697YIN)
17
+
18
+ Trained BPNet model (ChIP-seq) from the ENCODE project.
19
+
20
+ - Experiment: [ENCSR697YIN](https://www.encodeproject.org/experiments/ENCSR697YIN/)
21
+ - Model annotation: [ENCSR582FZD](https://www.encodeproject.org/annotations/ENCSR582FZD/)
22
+ - Assembly: hg38 · Target: CTCF · Biosample: breast epithelium
23
+
24
+ ## QC
25
+ - Status: **passed**
26
+ - Notes: Found direct motif (counts, profile);
27
+
28
+ ## Files
29
+ 5-fold cross-validation. Each `fold_*/` holds the trained model in two forms:
30
+ - `model.h5` — Keras weights (needs the `bpnet` custom layer to load)
31
+ - `saved_model/` — TensorFlow SavedModel (portable; loads with no extra deps)
32
+
33
+ ## Load
34
+ ```python
35
+ from huggingface_hub import snapshot_download
36
+ import tensorflow as tf
37
+ d = snapshot_download("kundajelab/encode-bpnet-CTCF-ChIP-seq-breast-epithelium-ENCSR697YIN-ENCSR582FZD")
38
+ model = tf.saved_model.load(f"{d}/fold_0/saved_model") # portable
39
+ # Keras .h5 (needs the bpnet package):
40
+ # from bpnet.model.custommodel import CustomModel
41
+ # m = tf.keras.models.load_model(f"{d}/fold_0/model.h5",
42
+ # custom_objects={'CustomModel': CustomModel})
43
+ ```
44
+
45
+ ## Inference inputs
46
+ The `serving_default` signature takes **three** inputs (not sequence alone):
47
+ - `sequence` — one-hot DNA, shape `(N, 2114, 4)`
48
+ - `profile_bias_input_0` — control (bias) profile track, shape `(N, 1000, 2)`
49
+ - `counts_bias_input_0` — control log-count(s), shape `(N, 2)`
50
+
51
+ The bias inputs are the experiment's matched control signal (the model file's `derived_from` control bigWigs on the ENCODE portal). Outputs: `profile_predictions` `(N, 1000, 2)` and `logcounts_predictions` `(N, 1)`. Reverse-complement averaging is the production default.
52
+
53
+ ## License & citation
54
+ Released under CC-BY-4.0, matching the [ENCODE data-use policy](https://www.encodeproject.org/about/data-use-policy/). Please cite the ENCODE Project Consortium and the model software: [BPNet](https://github.com/kundajelab/bpnet) (Avsec et al., Nat Genet 2021).
config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "input_len": 2114,
3
+ "output_profile_len": 1000,
4
+ "motif_module_params": {
5
+ "filters": [64],
6
+ "kernel_sizes": [21],
7
+ "padding": "valid"
8
+ },
9
+ "syntax_module_params": {
10
+ "num_dilation_layers": 8,
11
+ "filters": 64,
12
+ "kernel_size": 3,
13
+ "padding": "valid",
14
+ "pre_activation_residual_unit": true
15
+ },
16
+ "profile_head_params": {
17
+ "filters": 1,
18
+ "kernel_size": 75,
19
+ "padding": "valid"
20
+ },
21
+ "counts_head_params": {
22
+ "filters": 1,
23
+ "kernel_size": 75,
24
+ "padding": "valid",
25
+ "units": [1],
26
+ "activations":["linear"],
27
+ "dropouts":[0]
28
+
29
+ },
30
+ "profile_bias_module_params": {
31
+ "kernel_sizes": [1]
32
+ },
33
+ "counts_bias_module_params": {
34
+ },
35
+ "use_attribution_prior": false,
36
+ "attribution_prior_params": {
37
+ "frequency_limit": 150,
38
+ "limit_softness": 0.2,
39
+ "grad_smooth_sigma": 3,
40
+ "profile_grad_loss_weight": 200,
41
+ "counts_grad_loss_weight": 100
42
+ },
43
+ "loss_weights": [1, 90.29288265388205],
44
+ "counts_loss": "MSE"
45
+ }
fold_0/model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e476dc8763b50cb3212c18d35e0a6544c608835edace629934cd237147324d8d
3
+ size 561784
fold_0/saved_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fb81182c32a13deb56f0be4dfeed5ae849bd54f8c0c25f0500df5a284372126
3
+ size 750201
fold_0/saved_model/variables/variables.data-00000-of-00001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18aa6fa8f3807e1aa33e639e80b22b8ad879aefdbe9be0ca85e13ed8fdefffc0
3
+ size 1393322
fold_0/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file
 
fold_1/model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d75708ee9d29670de84cba43efb59f928ad268cf0da78a96b861f1afd377529b
3
+ size 561784
fold_1/saved_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28db0bfa7b2f9eb96c78f3787cf173a3d833274291077818ec0576f2d2913650
3
+ size 750201
fold_1/saved_model/variables/variables.data-00000-of-00001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d04cddf090b85e579d65148de2fc62f883f37fa4922b643058f6e2ca5db9a04d
3
+ size 1393322
fold_1/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file
 
fold_2/model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5891b50138a3bf692452378194e312d2f04336898827066b8ebe34945baf2a8f
3
+ size 561784
fold_2/saved_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa0b2b78ccb7a40df97f79811dc16656f69fe1727d676bb53e9fb7d3c38be05c
3
+ size 750201
fold_2/saved_model/variables/variables.data-00000-of-00001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cb409c299a259ec711698da0ccf942e62129c1667f7c6fef936aedef12137c4
3
+ size 1393322
fold_2/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file
 
fold_3/model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a12a2ff8ad50fca3bd7f2ef91d996d021131f250a1548b85156f56b10e17955a
3
+ size 561784
fold_3/saved_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e685c44dd230cf4ae473a2f5e12a5e9823377b304e7a4bb85ce6da04db1d728
3
+ size 750201
fold_3/saved_model/variables/variables.data-00000-of-00001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba23acea55138ed148c3b66c3af365240eda3c3554a2044b3f6df843bf00b115
3
+ size 1393322
fold_3/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file
 
fold_4/model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ccf5d371c2af4d6e82a31acb5064a12c02a69af289a81224fd6cb086ec9aac5
3
+ size 561784
fold_4/saved_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a8a5753364aa2d55eca8f58bc32e87dc85fed9a251073e447538c38d6a7a02f
3
+ size 750201
fold_4/saved_model/variables/variables.data-00000-of-00001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:351349fcd4a4f4cebd142c598a296004445898fcb64c52fbe13ebd5e7c92cd77
3
+ size 1393322
fold_4/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file