vr-scientist commited on
Commit
f38ac9b
·
verified ·
1 Parent(s): 7dd833c

Add BPNet model ENCSR132GIN (ENCSR000BUP)

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
+ - REST
14
+ ---
15
+
16
+ # ENCODE BPNet -- REST ChIP-seq in Panc1 (ENCSR000BUP)
17
+
18
+ Trained BPNet model (ChIP-seq) from the ENCODE project.
19
+
20
+ - Experiment: [ENCSR000BUP](https://www.encodeproject.org/experiments/ENCSR000BUP/)
21
+ - Model annotation: [ENCSR132GIN](https://www.encodeproject.org/annotations/ENCSR132GIN/)
22
+ - Assembly: hg38 · Target: REST · Biosample: Panc1
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-REST-ChIP-seq-Panc1-ENCSR000BUP-ENCSR132GIN")
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, 142.83744948361024],
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:9651031dc3bbabf412600d88f3b4e07aa0b1778ab3cdab1e0ae16ebdb527d1d6
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:51ed8be7036e553f985cafd5b302fbb64c6480e6d9fd61c50bcaf0a55624e972
3
+ size 750202
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:cf39e930ebb2f5e51db339c46c1f4cc2f3a00308ff0b24fd3b5b14c77ade8486
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:ef8cb4360cba95eef8845b84be64785814b251321af9e8fa703e5a7dbca6a288
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:a60fcda9f3e7b1e3af8e5776ede65a248f4ffa3f01a620e5bb54c282f4740b0d
3
+ size 750202
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:6a0f3d2427ae26d5406f85521c6bf1b1537840988d0472e526f3d81778fc1498
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:a1ef988a586b8e949f94284039760a7aceca427c107857ee8994210898caacba
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:06506aa3ea3979027d63c9bf0a731fdd31d95f659f116132be91a5346d2cf126
3
+ size 750202
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:0c669d927e570458132257c34fa718a45f6d7a9fc34dd138a4bc989af62f3b1b
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:b28574bd7db3629357263216fa195950af82ef12303248dfcfe365c1003ca889
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:e26fee0ca1f004859c5862627349a1a9e39c608518445e17553b946fd8a86b90
3
+ size 750202
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:64fb0753186f92a587c754fc4127a9ef3655514af893ab47fd7bcf45ba56a4ed
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:a1d28b0c33c9d602ffffa88416fef5a5c2ebfcdcc2e7ac5079f44b78078f497c
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:9527c6196b585e760bb7afe0d9f1a08cd30ade8eacbadeacea0b28815d6dbc87
3
+ size 750202
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:377b7280f0123f184b34308a3043f77d58d046d7babff62745bc12b997ed64e5
3
+ size 1393322
fold_4/saved_model/variables/variables.index ADDED
Binary file (5.77 kB). View file