Skip to content

Commit 1c8a7de

Browse files
committed
Update README.md
1 parent bd47fd2 commit 1c8a7de

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ Welcome to the GitHub page of DeepTrackAI's Particle dataset. The Particle datas
44

55
## Description
66

7-
The Particle dataset contains 2 movies in avi format. Each image is a grayscale picture of a digit, and the associated label is the digit value (from 0 to 9).
7+
The Particle dataset contains 2 movies in avi format. Each frame is an RGB picture of a trapped spherical particle.
88

99
- **Dataset Size**: 2 movies
10-
- **Frame Number**: frames per movie
11-
- **Frame Size**: 28x28 pixels
12-
- **Color**: Grayscale
10+
- **Number of Frames**: 100 frames per movie
11+
- **Frame Size**: 120x120 pixels
12+
- **Color**: RGB
1313

1414
## Usage
1515

@@ -24,8 +24,8 @@ To use the Particle dataset in your project:
2424
To clone the repository and access the Particle dataset:
2525

2626
```bash
27-
git clone -b mnist github.com/DeepTrackAI/Particle_deeplay
28-
cd Particle_deeplay
27+
git clone https://github.com/DeepTrackAI/particle_dataset
28+
cd particle_dataset
2929
```
3030

3131
### Download Programmatically in Python
@@ -38,7 +38,7 @@ from io import BytesIO
3838
from zipfile import ZipFile
3939

4040
# URL to the repository (modify this if the dataset is hosted in a specific location or file)
41-
DATASET_URL = 'https://github.com/DeepTrackAI/Particle_dataset/raw/main/mnist.zip'
41+
DATASET_URL = 'https://github.com/DeepTrackAI/particle_dataset/raw/main/mnist.zip'
4242

4343
response = requests.get(DATASET_URL)
4444
with ZipFile(BytesIO(response.content)) as z:

0 commit comments

Comments
 (0)