File size: 521 Bytes
891ef77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Dataset Structure

/custom_vqa_project/
β”‚
β”œβ”€β”€ /dataset/
β”‚   β”œβ”€β”€ /images/
β”‚   β”‚   β”œβ”€β”€ train/
β”‚   β”‚   β”‚   β”œβ”€β”€ image1.jpg
β”‚   β”‚   β”‚   β”œβ”€β”€ image2.jpg
β”‚   β”‚   └── val/
β”‚   β”‚       β”œβ”€β”€ image3.jpg
β”‚   β”‚       └── image4.jpg
β”‚   β”œβ”€β”€ train.json  # Metadata for the training set
β”‚   └── val.json    # Metadata for the validation set
β”‚
β”œβ”€β”€ /scripts/
β”‚   └── train.py   # Your fine-tuning script
β”‚
└── README.md