anindya64 commited on
Commit
f34ff56
·
verified ·
1 Parent(s): 505b57d

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -58,3 +58,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ tables/data_unpacked_labeled_flip2_nucb_two_to_many.csv.jsonl filter=lfs diff=lfs merge=lfs -text
62
+ tables/data_unpacked_labeled_flip2_trpb_one_to_many.csv.jsonl filter=lfs diff=lfs merge=lfs -text
63
+ tables/data_unpacked_labeled_flip2_trpb_two_to_many.csv.jsonl filter=lfs diff=lfs merge=lfs -text
64
+ tables/data_unpacked_labeled_flip2_trpb_by_position.csv.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: FLIP v2
4
+ size_categories:
5
+ - 100K<n<1M
6
+ task_categories:
7
+ - other
8
+ language:
9
+ - en
10
+ tags:
11
+ - biology
12
+ - proteins
13
+ - fitness
14
+ - benchmark
15
+ - flip
16
+ - jsonl
17
+ ---
18
+
19
+ # FLIP v2
20
+
21
+ FLIP v2 benchmark splits for protein engineering tasks (amylase, hydrolase, etc.), normalized to newline-delimited JSON.
22
+
23
+ Processed and uploaded by the [MegaData](https://github.com/) post-download pipeline
24
+ (internal repo). Original source: <https://github.com/J-SNACKKB/FLIP>.
25
+
26
+ ## Statistics
27
+
28
+ | | |
29
+ |---|---|
30
+ | Table files | 16 |
31
+ | Total rows | 890,356 |
32
+ | Total bytes | 440.98 MiB (462,398,539) |
33
+
34
+ ## Tables
35
+
36
+ | Table | Rows | Bytes |
37
+ |---|---:|---:|
38
+ | `data_unpacked_labeled_flip2_amylase_by_mutation.csv.jsonl` | 3,706 | 2.18 MiB |
39
+ | `data_unpacked_labeled_flip2_amylase_close_to_far.csv.jsonl` | 3,706 | 2.18 MiB |
40
+ | `data_unpacked_labeled_flip2_amylase_far_to_close.csv.jsonl` | 3,706 | 2.18 MiB |
41
+ | `data_unpacked_labeled_flip2_amylase_one_to_many.csv.jsonl` | 3,706 | 2.18 MiB |
42
+ | `data_unpacked_labeled_flip2_hydro_low_to_high.csv.jsonl` | 24,935 | 6.02 MiB |
43
+ | `data_unpacked_labeled_flip2_hydro_three_to_many.csv.jsonl` | 24,935 | 6.06 MiB |
44
+ | `data_unpacked_labeled_flip2_hydro_to_P01053.csv.jsonl` | 24,935 | 5.98 MiB |
45
+ | `data_unpacked_labeled_flip2_hydro_to_P06241.csv.jsonl` | 24,935 | 5.97 MiB |
46
+ | `data_unpacked_labeled_flip2_hydro_to_P0A9X9.csv.jsonl` | 24,935 | 5.98 MiB |
47
+ | `data_unpacked_labeled_flip2_ired_two_to_many.csv.jsonl` | 8,586 | 3.95 MiB |
48
+ | `data_unpacked_labeled_flip2_nucb_two_to_many.csv.jsonl` | 55,759 | 16.85 MiB |
49
+ | `data_unpacked_labeled_flip2_pdz3_single_to_double.csv.jsonl` | 734 | 213.50 KiB |
50
+ | `data_unpacked_labeled_flip2_rhomax_by_wild_type.csv.jsonl` | 884 | 389.02 KiB |
51
+ | `data_unpacked_labeled_flip2_trpb_by_position.csv.jsonl` | 228,298 | 126.97 MiB |
52
+ | `data_unpacked_labeled_flip2_trpb_one_to_many.csv.jsonl` | 228,298 | 126.94 MiB |
53
+ | `data_unpacked_labeled_flip2_trpb_two_to_many.csv.jsonl` | 228,298 | 126.95 MiB |
54
+
55
+ ## Layout
56
+
57
+ ```
58
+ .
59
+ ├── _MANIFEST.json # aggregate manifest (per-table counts)
60
+ └── tables/<source_slug>.jsonl # normalized rows (one JSON object per line)
61
+ ```
62
+
63
+ Each line in a `tables/*.jsonl` file is a JSON object with at least
64
+ `dataset_id`, `row` (the raw upstream row), `row_index`, and `source_file`
65
+ fields, so every row carries its upstream provenance.
66
+
67
+ ## Loading
68
+
69
+ ```bash
70
+ hf download LiteFold/FLIP2 --repo-type dataset --local-dir ./flip2
71
+ ```
72
+
73
+ Programmatic streaming:
74
+
75
+ ```python
76
+ import json
77
+ from pathlib import Path
78
+ from huggingface_hub import snapshot_download
79
+
80
+ local = snapshot_download(repo_id="LiteFold/FLIP2", repo_type="dataset")
81
+ for jsonl in sorted(Path(local, "tables").glob("*.jsonl")):
82
+ with jsonl.open() as f:
83
+ for line in f:
84
+ row = json.loads(line)
85
+ ... # row["row"] is the upstream record
86
+ ```
87
+
88
+ ## License
89
+
90
+ See upstream FLIP repository for licensing.
91
+
92
+ ## Citation
93
+
94
+ > Dallago C, et al. FLIP: Benchmark tasks in fitness landscape inference for proteins. NeurIPS Datasets and Benchmarks, 2021.
95
+
96
+ ## Provenance
97
+
98
+ Built from the local manifest entry `flip2` of `manifests/atlas_download_plan.json`.
99
+ Pipeline source: `megadata-post normalize --dataset flip2 --tables-only`.
_MANIFEST.json ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "category": "labeled",
3
+ "dataset_id": "flip2",
4
+ "format": "jsonl table rows with provenance",
5
+ "tables": [
6
+ {
7
+ "bytes": 1682522,
8
+ "category": "labeled",
9
+ "dataset_id": "flip2",
10
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_amylase_by_mutation.csv.jsonl",
11
+ "rows": 0,
12
+ "source_file": "data/unpacked/labeled/flip2/amylase/by_mutation.csv",
13
+ "status": "skipped_existing"
14
+ },
15
+ {
16
+ "bytes": 1681545,
17
+ "category": "labeled",
18
+ "dataset_id": "flip2",
19
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_amylase_close_to_far.csv.jsonl",
20
+ "rows": 0,
21
+ "source_file": "data/unpacked/labeled/flip2/amylase/close_to_far.csv",
22
+ "status": "skipped_existing"
23
+ },
24
+ {
25
+ "bytes": 1681658,
26
+ "category": "labeled",
27
+ "dataset_id": "flip2",
28
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_amylase_far_to_close.csv.jsonl",
29
+ "rows": 0,
30
+ "source_file": "data/unpacked/labeled/flip2/amylase/far_to_close.csv",
31
+ "status": "skipped_existing"
32
+ },
33
+ {
34
+ "bytes": 1682693,
35
+ "category": "labeled",
36
+ "dataset_id": "flip2",
37
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_amylase_one_to_many.csv.jsonl",
38
+ "rows": 0,
39
+ "source_file": "data/unpacked/labeled/flip2/amylase/one_to_many.csv",
40
+ "status": "skipped_existing"
41
+ },
42
+ {
43
+ "bytes": 2283818,
44
+ "category": "labeled",
45
+ "dataset_id": "flip2",
46
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_hydro_low_to_high.csv.jsonl",
47
+ "rows": 0,
48
+ "source_file": "data/unpacked/labeled/flip2/hydro/low_to_high.csv",
49
+ "status": "skipped_existing"
50
+ },
51
+ {
52
+ "bytes": 2275004,
53
+ "category": "labeled",
54
+ "dataset_id": "flip2",
55
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_hydro_three_to_many.csv.jsonl",
56
+ "rows": 0,
57
+ "source_file": "data/unpacked/labeled/flip2/hydro/three_to_many.csv",
58
+ "status": "skipped_existing"
59
+ },
60
+ {
61
+ "bytes": 2288622,
62
+ "category": "labeled",
63
+ "dataset_id": "flip2",
64
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_hydro_to_P01053.csv.jsonl",
65
+ "rows": 0,
66
+ "source_file": "data/unpacked/labeled/flip2/hydro/to_P01053.csv",
67
+ "status": "skipped_existing"
68
+ },
69
+ {
70
+ "bytes": 2285814,
71
+ "category": "labeled",
72
+ "dataset_id": "flip2",
73
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_hydro_to_P06241.csv.jsonl",
74
+ "rows": 0,
75
+ "source_file": "data/unpacked/labeled/flip2/hydro/to_P06241.csv",
76
+ "status": "skipped_existing"
77
+ },
78
+ {
79
+ "bytes": 2286992,
80
+ "category": "labeled",
81
+ "dataset_id": "flip2",
82
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_hydro_to_P0A9X9.csv.jsonl",
83
+ "rows": 0,
84
+ "source_file": "data/unpacked/labeled/flip2/hydro/to_P0A9X9.csv",
85
+ "status": "skipped_existing"
86
+ },
87
+ {
88
+ "bytes": 2764381,
89
+ "category": "labeled",
90
+ "dataset_id": "flip2",
91
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_ired_two_to_many.csv.jsonl",
92
+ "rows": 0,
93
+ "source_file": "data/unpacked/labeled/flip2/ired/two_to_many.csv",
94
+ "status": "skipped_existing"
95
+ },
96
+ {
97
+ "bytes": 8700523,
98
+ "category": "labeled",
99
+ "dataset_id": "flip2",
100
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_nucb_two_to_many.csv.jsonl",
101
+ "rows": 0,
102
+ "source_file": "data/unpacked/labeled/flip2/nucb/two_to_many.csv",
103
+ "status": "skipped_existing"
104
+ },
105
+ {
106
+ "bytes": 98385,
107
+ "category": "labeled",
108
+ "dataset_id": "flip2",
109
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_pdz3_single_to_double.csv.jsonl",
110
+ "rows": 0,
111
+ "source_file": "data/unpacked/labeled/flip2/pdz3/single_to_double.csv",
112
+ "status": "skipped_existing"
113
+ },
114
+ {
115
+ "bytes": 255291,
116
+ "category": "labeled",
117
+ "dataset_id": "flip2",
118
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_rhomax_by_wild_type.csv.jsonl",
119
+ "rows": 0,
120
+ "source_file": "data/unpacked/labeled/flip2/rhomax/by_wild_type.csv",
121
+ "status": "skipped_existing"
122
+ },
123
+ {
124
+ "bytes": 96267673,
125
+ "category": "labeled",
126
+ "dataset_id": "flip2",
127
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_trpb_by_position.csv.jsonl",
128
+ "rows": 0,
129
+ "source_file": "data/unpacked/labeled/flip2/trpb/by_position.csv",
130
+ "status": "skipped_existing"
131
+ },
132
+ {
133
+ "bytes": 96236420,
134
+ "category": "labeled",
135
+ "dataset_id": "flip2",
136
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_trpb_one_to_many.csv.jsonl",
137
+ "rows": 0,
138
+ "source_file": "data/unpacked/labeled/flip2/trpb/one_to_many.csv",
139
+ "status": "skipped_existing"
140
+ },
141
+ {
142
+ "bytes": 96244749,
143
+ "category": "labeled",
144
+ "dataset_id": "flip2",
145
+ "output_file": "data/processed/labeled/flip2/tables/data_unpacked_labeled_flip2_trpb_two_to_many.csv.jsonl",
146
+ "rows": 0,
147
+ "source_file": "data/unpacked/labeled/flip2/trpb/two_to_many.csv",
148
+ "status": "skipped_existing"
149
+ }
150
+ ],
151
+ "total_rows": 0
152
+ }
tables/data_unpacked_labeled_flip2_amylase_by_mutation.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_amylase_close_to_far.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_amylase_far_to_close.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_amylase_one_to_many.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_hydro_low_to_high.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_hydro_three_to_many.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_hydro_to_P01053.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_hydro_to_P06241.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_hydro_to_P0A9X9.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_ired_two_to_many.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_nucb_two_to_many.csv.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1adb1d164ffe57c340d0573f34bd64112561dbd4ad5b58489ca262ed6d7bce0c
3
+ size 17666581
tables/data_unpacked_labeled_flip2_pdz3_single_to_double.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_rhomax_by_wild_type.csv.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
tables/data_unpacked_labeled_flip2_trpb_by_position.csv.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1227c894e9f1128692e32edebbc5fbb1882f131fca8384128c344b7ce41a203e
3
+ size 133140808
tables/data_unpacked_labeled_flip2_trpb_one_to_many.csv.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21f70a7ea6432247e2b265a8c3ebaad11dbfc0904e6555f6dba34a37089f1755
3
+ size 133109555
tables/data_unpacked_labeled_flip2_trpb_two_to_many.csv.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53371aad367dee43c44e99e38ebd8f9ee90952f2f24769044326ca4e17f6e25a
3
+ size 133117884