hazemessam commited on
Commit
550f378
·
verified ·
1 Parent(s): 2e90987

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: afl-3.0
3
+ tags:
4
+ - biology
5
+ ---
6
+
7
+
8
+ FLIP SCL Dataset: SubCellular Localization
9
+ SCL = SubCellular Localization
10
+ What It Is
11
+ This is a multi-label classification task where the goal is to predict which cellular compartment(s) a protein resides in within eukaryotic cells.
12
+ The 10 Subcellular Locations
13
+ Based on the DeepLoc dataset that FLIP appears to be derived from:
14
+
15
+ Nucleus
16
+ Cytoplasm
17
+ Extracellular (secreted proteins)
18
+ Mitochondrion
19
+ Cell membrane
20
+ Endoplasmic reticulum (ER)
21
+ Chloroplast (plants only)
22
+ Golgi apparatus
23
+ Lysosome/Vacuole
24
+ Peroxisome
25
+
26
+ Why Multi-Label?
27
+ Some proteins localize to multiple compartments (e.g., shuttling between nucleus and cytoplasm, or dual-targeted to mitochondria and chloroplasts). This is biologically important - around 20-30% of proteins have multiple localizations.
28
+ The Splits Explained
29
+ Looking at the directory structure, FLIP provides these splits:
30
+
31
+ 1. balanced.csv
32
+ Standard split with balanced representation across localization categories
33
+ Avoids class imbalance issues
34
+ Likely uses random or cluster-based splitting
35
+
36
+ 2. human_hard.csv / human_soft.csv
37
+ Human-only proteins (Homo sapiens)
38
+ Hard split: More challenging - possibly using lower sequence identity cutoff between train/test, or testing on rare/underrepresented localizations
39
+ Soft split: Easier - higher sequence similarity allowed between train/test sets
40
+
41
+ 3. mixed_hard.csv / mixed_soft.csv
42
+ Cross-species proteins (eukaryotes: yeast, plants, animals, fungi)
43
+ Hard split: Tests generalization across phylogenetically distant organisms or rare localization patterns
44
+ Soft split: Tests on more similar proteins/organisms
45
+
46
+ What Makes Splits "Hard" vs "Soft"?
47
+ Based on subcellular localization literature:
48
+
49
+ Soft splits likely have:
50
+ Higher sequence identity between train/test (e.g., 30-40% homology allowed)
51
+ Similar organisms in train/test
52
+ Balanced representation of all localization types
53
+
54
+ Hard splits likely have:
55
+ Lower sequence identity between train/test (e.g., <20-30% homology)
56
+ Phylogenetic distance: Train on yeast/bacteria, test on human
57
+ Rare localizations: Test on underrepresented compartments (peroxisome, chloroplast)
58
+ Multi-localization complexity: Test on proteins with multiple localizations
59
+
60
+ Key Challenge for FLIP
61
+ Unlike other FLIP tasks that test extrapolation in fitness values (e.g., low→high fitness), SCL tests:
62
+ Sequence-based generalization: Can models predict localization for proteins unlike any in training?
63
+ Multi-label complexity: Handling proteins that go to 2-3 compartments
64
+ Cross-species transfer: Learning universal localization rules vs. species-specific signals
65
+