-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWRUN.sh
48 lines (38 loc) · 1.78 KB
/
NEWRUN.sh
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
48
#!/bin/sh
STRING="Downloading the MNIST-data set and creating clients"
echo $STRING
# Check if the directory exists
if [ ! -d "DiffPrivate_FedLearning" ]; then
echo "Directory DiffPrivate_FedLearning does not exist. Please check the directory name and path."
exit 1
fi
cd /kaggle/working/machine-learning-diff-private-federated-learning
mkdir -p MNIST_original
# Create a Python script to download the MNIST dataset using TensorFlow/Keras
cat <<EOF > download_mnist.py
import tensorflow as tf
import numpy as np
# Download the MNIST dataset
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()
# Save the dataset to the MNIST_original directory
np.save('MNIST_original/train_images.npy', x_train)
np.save('MNIST_original/train_labels.npy', y_train)
np.save('MNIST_original/test_images.npy', x_test)
np.save('MNIST_original/test_labels.npy', y_test)
EOF
# Run the Python script to download and save the dataset
python download_mnist.py
# Check if files were downloaded
if [ ! -f "MNIST_original/train_images.npy" ] || [ ! -f "MNIST_original/train_labels.npy" ] || [ ! -f "MNIST_original/test_images.npy" ] || [ ! -f "MNIST_original/test_labels.npy" ]; then
echo "One or more MNIST files failed to download."
exit 1
fi
# Run the Create_clients.py script
cd /kaggle/working/machine-learning-diff-private-federated-learning
python Create_clients.py
STRING2="You can now run differentially private federated learning on the MNIST data set. Type python sample.py —-h for help"
echo $STRING2
STRING3="An example: …python sample.py —-N 100… would run differentially private federated learning on 100 clients for a privacy budget of (epsilon = 8, delta = 0.001)"
echo $STRING3
STRING4="For more information on how to use the functions please refer to their documentation"
echo $STRING4