-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDATA-install.sh
More file actions
47 lines (37 loc) · 727 Bytes
/
DATA-install.sh
File metadata and controls
47 lines (37 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# install the dataset
# 1. MNIST
cd ./data/MNIST
sh download_and_unzip.sh
cd ../../
# 2. FederatedEMNIST
cd ./data/FederatedEMNIST
sh download_federatedEMNIST.sh
cd ../../
# 3. shakespeare
cd ./data/shakespeare
sh download_shakespeare.sh
cd ../../
# 4. fed_shakespeare
cd ./data/fed_shakespeare
sh download_shakespeare.sh
cd ../../
# 5. fed_cifar100
cd ./data/fed_cifar100
sh download_fedcifar100.sh
cd ../../
# 6. stackoverflow
cd ./data/stackoverflow
sh download_stackoverflow.sh
cd ../../
# 7. CIFAR10
cd ./data/cifar10
sh download_cifar10.sh
cd ../../
# 8. CIFAR100
cd ./data/cifar100
sh download_cifar100.sh
cd ../../
# 9. CINIC10
cd ./data/cinic10
sh download_cinic10.sh > cinic10_downloading_log.txt
cd ../../