hazemessam commited on
Commit
f785a0e
·
verified ·
1 Parent(s): 70c4b1f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: afl-3.0
3
+ tags:
4
+ - biology
5
+ ---
6
+
7
+ FLIP AAV Dataset Splits
8
+ The AAV (Adeno-Associated Virus) dataset in FLIP focuses on predicting the fitness/efficiency of AAV capsid variants for gene therapy.
9
+
10
+ Note: DROP any example that has split=nan when training. The reason for leaving them is to keep this dataset identical to the original one.
11
+
12
+ - low_vs_high
13
+ - Training set: Sequences with fitness values equal to or below wild type
14
+ - Test set: Sequences with fitness values above wild type
15
+ - Purpose: Tests if models can extrapolate from low-performing sequences to predict high-performing ones
16
+
17
+ - one_vs_many
18
+ - Training set: Sequences with exactly 1 mutation from wild type
19
+ - Test set: Sequences with many mutations (more than 1)
20
+ - Purpose: Tests generalization from single mutants to multi-mutant sequences
21
+
22
+ - two_vs_many
23
+ - Training set: Sequences with ≤2 mutations from wild type
24
+ - Test set: Sequences with more than 2 mutations
25
+ - Purpose: Tests if models trained on low-mutation sequences can predict fitness of higher-mutation sequences
26
+
27
+ - seven_vs_many
28
+ - Training set: Sequences with exactly 7 mutations from wild type
29
+ - Test set: Sequences with a different number of mutations
30
+ - Purpose: Tests generalization when training on a specific mutation count
31
+
32
+ - des_mut (Designed vs Mutant)
33
+ - Training set: Designed sequences (rationally designed variants)
34
+ - Test set: Random mutants
35
+ - Purpose: Tests if models trained on designed sequences can predict fitness of random mutants
36
+
37
+ - mut_des (Mutant vs Designed)
38
+ - Training set: Random mutants
39
+ - Test set: Designed sequences
40
+ - Purpose: The reverse - tests if models trained on random mutants can predict designed sequence fitness
41
+
42
+ - sampled
43
+ - Random 80/20 train-test split
44
+ - Used as a baseline comparison