jimnoneill commited on
Commit
689732f
·
verified ·
1 Parent(s): 8b01cd7

Upload ENVISION eye imaging classifier v1.0

Browse files
Files changed (2) hide show
  1. README.md +18 -9
  2. config_setfit.json +2 -2
README.md CHANGED
@@ -28,20 +28,28 @@ Uses `Alibaba-NLP/gte-large-en-v1.5` as backbone with 4-class classification:
28
 
29
  ## Results on Zenodo
30
 
 
 
31
  | Class | Count |
32
  |-------|-------|
33
- | EYE_IMAGING | 524 |
34
- | EYE_SOFTWARE | 1,150 |
35
- | EDGE_CASE | 99 |
36
- | NEGATIVE | 7,675 |
37
 
38
  ### Confidence Distribution (EYE_IMAGING)
39
 
40
- | Confidence | Count |
41
- |------------|-------|
42
- | High (≥0.95) | 485 |
43
- | Medium (0.80-0.95) | 20 |
44
- | Lower (<0.80) | 19 |
 
 
 
 
 
 
45
 
46
  ## Training
47
 
@@ -71,3 +79,4 @@ predictions = head.predict(embeddings)
71
  ## Contact
72
 
73
  EyeACT team: [eyeactstudy.org](https://eyeactstudy.org)
 
 
28
 
29
  ## Results on Zenodo
30
 
31
+ Tested on 515 Zenodo datasets (filtered to `resource_type=dataset` only):
32
+
33
  | Class | Count |
34
  |-------|-------|
35
+ | EYE_IMAGING | 120 |
36
+ | EYE_SOFTWARE | 66 |
37
+ | EDGE_CASE | 3 |
38
+ | NEGATIVE | 325 |
39
 
40
  ### Confidence Distribution (EYE_IMAGING)
41
 
42
+ | Confidence | Count | % |
43
+ |------------|-------|---|
44
+ | High (≥0.95) | 117 | 97.5% |
45
+ | Medium (0.80-0.95) | 2 | 1.7% |
46
+ | Lower (<0.80) | 1 | 0.8% |
47
+
48
+ ### Data Pipeline
49
+
50
+ - Scraped with datasets-only filter
51
+ - ZIP contents inspected via HTTP Range requests (31,958 files catalogued)
52
+ - Genomics files excluded (.fasta, .h5ad, .vcf, etc.)
53
 
54
  ## Training
55
 
 
79
  ## Contact
80
 
81
  EyeACT team: [eyeactstudy.org](https://eyeactstudy.org)
82
+
config_setfit.json CHANGED
@@ -1,9 +1,9 @@
1
  {
 
2
  "labels": [
3
  "NEGATIVE",
4
  "EDGE_CASE",
5
  "EYE_SOFTWARE",
6
  "EYE_IMAGING"
7
- ],
8
- "normalize_embeddings": false
9
  }
 
1
  {
2
+ "normalize_embeddings": false,
3
  "labels": [
4
  "NEGATIVE",
5
  "EDGE_CASE",
6
  "EYE_SOFTWARE",
7
  "EYE_IMAGING"
8
+ ]
 
9
  }