Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- README.md +77 -0
- metadata.json +24 -0
- test.txt +0 -0
- test/image_000414.jpg +3 -0
- test/image_001557.jpg +3 -0
- test/image_001812.jpg +3 -0
- test/image_001967.jpg +3 -0
- test/image_002432.jpg +3 -0
- test/image_002458.jpg +3 -0
- test/image_004708.jpg +3 -0
- test/image_005081.jpg +3 -0
- test/image_005218.jpg +3 -0
- test/image_005280.jpg +3 -0
- test/image_006511.jpg +3 -0
- test/image_006650.jpg +3 -0
- test/image_006975.jpg +3 -0
- test/image_006980.jpg +3 -0
- test/image_007377.jpg +3 -0
- test/image_007864.jpg +3 -0
- test/image_007909.jpg +3 -0
- test/image_008201.jpg +3 -0
- test/image_008378.jpg +3 -0
- test/image_008705.jpg +3 -0
- test/image_009406.jpg +3 -0
- test/image_010491.jpg +3 -0
- test/image_011117.jpg +3 -0
- test/image_011435.jpg +3 -0
- test/image_012206.jpg +3 -0
- test/image_013191.jpg +3 -0
- test/image_014200.jpg +3 -0
- test/image_014898.jpg +3 -0
- test/image_015322.jpg +3 -0
- test/image_016189.jpg +3 -0
- test/image_016343.jpg +3 -0
- test/image_017144.jpg +3 -0
- test/image_017472.jpg +3 -0
- test/image_018387.jpg +3 -0
- test/image_019093.jpg +3 -0
- test/image_019286.jpg +3 -0
- test/image_020836.jpg +3 -0
- test/image_021242.jpg +3 -0
- test/image_021619.jpg +3 -0
- test/image_022023.jpg +3 -0
- test/image_022156.jpg +3 -0
- test/image_022640.jpg +3 -0
- test/image_024939.jpg +3 -0
- test/image_025780.jpg +3 -0
- test/image_026043.jpg +3 -0
- test/image_027254.jpg +3 -0
- test/image_027296.jpg +3 -0
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CS701 Course Project Dataset
|
| 2 |
+
|
| 3 |
+
For task "ViT Model Adaptation"
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
This is an anonymized image classification dataset containing 10,000 classes.
|
| 7 |
+
|
| 8 |
+
## Dataset Statistics
|
| 9 |
+
- **Number of classes**: 10,000
|
| 10 |
+
- **Training samples**: 450,000 (45 per class, with labels)
|
| 11 |
+
- **Validation samples**: 50,000 (5 per class, **without labels**)
|
| 12 |
+
- **Test samples**: 100,000 (10 per class, **without labels**)
|
| 13 |
+
|
| 14 |
+
## Dataset Structure
|
| 15 |
+
```
|
| 16 |
+
train/
|
| 17 |
+
class_0000/ # 45 images
|
| 18 |
+
class_0001/ # 45 images
|
| 19 |
+
...
|
| 20 |
+
class_9999/ # 45 images
|
| 21 |
+
|
| 22 |
+
val/
|
| 23 |
+
image_000000.jpg
|
| 24 |
+
image_000001.jpg
|
| 25 |
+
...
|
| 26 |
+
image_049999.jpg
|
| 27 |
+
|
| 28 |
+
test/
|
| 29 |
+
image_000000.jpg
|
| 30 |
+
image_000001.jpg
|
| 31 |
+
...
|
| 32 |
+
image_099999.jpg
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
## Files
|
| 36 |
+
- `train.txt`: Training image paths and labels (format: `train/class_XXXX/filename.jpg class_id`)
|
| 37 |
+
- `val.txt`: Validation image paths only (format: `val/image_XXXXXX.jpg`)
|
| 38 |
+
- `test.txt`: Test image paths only (format: `test/image_XXXXXX.jpg`)
|
| 39 |
+
- `metadata.json`: Dataset metadata
|
| 40 |
+
|
| 41 |
+
## Benchmark Submission
|
| 42 |
+
|
| 43 |
+
1. Train your model on the training set (450,000 samples with labels)
|
| 44 |
+
2. Generate predictions on validation set (50,000 samples without labels)
|
| 45 |
+
3. Generate predictions on test set (100,000 samples without labels)
|
| 46 |
+
4. Submit predictions to CodaBench for evaluation.
|
| 47 |
+
|
| 48 |
+
### Prediction Format
|
| 49 |
+
|
| 50 |
+
Your prediction files should follow this format:
|
| 51 |
+
|
| 52 |
+
**val_predictions.txt**:
|
| 53 |
+
```
|
| 54 |
+
val/image_000000.jpg 1234
|
| 55 |
+
val/image_000001.jpg 5678
|
| 56 |
+
...
|
| 57 |
+
val/image_049999.jpg 9012
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
**test_predictions.txt**:
|
| 61 |
+
```
|
| 62 |
+
test/image_000000.jpg 1234
|
| 63 |
+
test/image_000001.jpg 5678
|
| 64 |
+
...
|
| 65 |
+
test/image_099999.jpg 9012
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
Each line contains: `<image_path> <predicted_class_id>` where class_id is in range [0, 9999].
|
| 69 |
+
|
| 70 |
+
### Evaluation
|
| 71 |
+
|
| 72 |
+
Submit your prediction files to the dataset maintainer for evaluation. The evaluation will compute:
|
| 73 |
+
- Overall accuracy
|
| 74 |
+
- Per-class accuracy
|
| 75 |
+
- Additional metrics (if applicable)
|
| 76 |
+
|
| 77 |
+
Note: Validation and test labels are withheld to prevent overfitting and ensure fair benchmarking.
|
metadata.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_name": "cs701-course-data",
|
| 3 |
+
"description": "Anonymized image classification dataset with 10,000 classes",
|
| 4 |
+
"num_classes": 10000,
|
| 5 |
+
"train": {
|
| 6 |
+
"num_samples": 450000,
|
| 7 |
+
"samples_per_class": 45,
|
| 8 |
+
"label_available": true
|
| 9 |
+
},
|
| 10 |
+
"val": {
|
| 11 |
+
"num_samples": 50000,
|
| 12 |
+
"samples_per_class": 5,
|
| 13 |
+
"label_available": false,
|
| 14 |
+
"note": "Validation labels withheld for benchmark evaluation"
|
| 15 |
+
},
|
| 16 |
+
"test": {
|
| 17 |
+
"num_samples": 100000,
|
| 18 |
+
"samples_per_class": 10,
|
| 19 |
+
"label_available": false,
|
| 20 |
+
"note": "Test labels withheld for benchmark evaluation"
|
| 21 |
+
},
|
| 22 |
+
"image_format": "jpg",
|
| 23 |
+
"task": "ViT model adaptation"
|
| 24 |
+
}
|
test.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
test/image_000414.jpg
ADDED
|
Git LFS Details
|
test/image_001557.jpg
ADDED
|
Git LFS Details
|
test/image_001812.jpg
ADDED
|
Git LFS Details
|
test/image_001967.jpg
ADDED
|
Git LFS Details
|
test/image_002432.jpg
ADDED
|
Git LFS Details
|
test/image_002458.jpg
ADDED
|
Git LFS Details
|
test/image_004708.jpg
ADDED
|
Git LFS Details
|
test/image_005081.jpg
ADDED
|
Git LFS Details
|
test/image_005218.jpg
ADDED
|
Git LFS Details
|
test/image_005280.jpg
ADDED
|
Git LFS Details
|
test/image_006511.jpg
ADDED
|
Git LFS Details
|
test/image_006650.jpg
ADDED
|
Git LFS Details
|
test/image_006975.jpg
ADDED
|
Git LFS Details
|
test/image_006980.jpg
ADDED
|
Git LFS Details
|
test/image_007377.jpg
ADDED
|
Git LFS Details
|
test/image_007864.jpg
ADDED
|
Git LFS Details
|
test/image_007909.jpg
ADDED
|
Git LFS Details
|
test/image_008201.jpg
ADDED
|
Git LFS Details
|
test/image_008378.jpg
ADDED
|
Git LFS Details
|
test/image_008705.jpg
ADDED
|
Git LFS Details
|
test/image_009406.jpg
ADDED
|
Git LFS Details
|
test/image_010491.jpg
ADDED
|
Git LFS Details
|
test/image_011117.jpg
ADDED
|
Git LFS Details
|
test/image_011435.jpg
ADDED
|
Git LFS Details
|
test/image_012206.jpg
ADDED
|
Git LFS Details
|
test/image_013191.jpg
ADDED
|
Git LFS Details
|
test/image_014200.jpg
ADDED
|
Git LFS Details
|
test/image_014898.jpg
ADDED
|
Git LFS Details
|
test/image_015322.jpg
ADDED
|
Git LFS Details
|
test/image_016189.jpg
ADDED
|
Git LFS Details
|
test/image_016343.jpg
ADDED
|
Git LFS Details
|
test/image_017144.jpg
ADDED
|
Git LFS Details
|
test/image_017472.jpg
ADDED
|
Git LFS Details
|
test/image_018387.jpg
ADDED
|
Git LFS Details
|
test/image_019093.jpg
ADDED
|
Git LFS Details
|
test/image_019286.jpg
ADDED
|
Git LFS Details
|
test/image_020836.jpg
ADDED
|
Git LFS Details
|
test/image_021242.jpg
ADDED
|
Git LFS Details
|
test/image_021619.jpg
ADDED
|
Git LFS Details
|
test/image_022023.jpg
ADDED
|
Git LFS Details
|
test/image_022156.jpg
ADDED
|
Git LFS Details
|
test/image_022640.jpg
ADDED
|
Git LFS Details
|
test/image_024939.jpg
ADDED
|
Git LFS Details
|
test/image_025780.jpg
ADDED
|
Git LFS Details
|
test/image_026043.jpg
ADDED
|
Git LFS Details
|
test/image_027254.jpg
ADDED
|
Git LFS Details
|
test/image_027296.jpg
ADDED
|
Git LFS Details
|