forked from ss4328/h5_manager_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasets2h5.sh
More file actions
executable file
·15 lines (10 loc) · 858 Bytes
/
datasets2h5.sh
File metadata and controls
executable file
·15 lines (10 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#1/4. Generate Training set -> hot dogs
python h5Converter.py /Users/shivanshsuhane/Desktop/code/ml_gitRepo/side_projects/hot-dog-not-hot-dog/Assignment/datasets/train/hot_dog train_hot_dogs
#2/4. Generate Training set -> NOT hot dogs
python h5Converter.py /Users/shivanshsuhane/Desktop/code/ml_gitRepo/side_projects/hot-dog-not-hot-dog/Assignment/datasets/train/not_hot_dog train_not_hot_dogs
#3/4. Generate Testing set -> hot dogs
python h5Converter.py /Users/shivanshsuhane/Desktop/code/ml_gitRepo/side_projects/hot-dog-not-hot-dog/Assignment/datasets/test/hot_dog test_hot_dogs
#4/4. Generate Testing set -> NOT hot dogs
python h5Converter.py /Users/shivanshsuhane/Desktop/code/ml_gitRepo/side_projects/hot-dog-not-hot-dog/Assignment/datasets/test/not_hot_dog test_not_hot_dogs
echo "All files translate. H4s generated @root dir location"