@@ -77,8 +77,11 @@ To do the Gradient Descent, one needs to compute
Finally that we discussed about all the steps of the protocol, here the explanation of which parameters to pass in the CLI with main.py:
* begin_step: first iteration of the protocol. Should be equals to 0 if you never launched it.
* server: 'yes' or 'no'. If you use a server and can launch command via slurm files, you can use 'yes' and probably you need to custom function 'run_job' in write_jobs.py to adapt it to you server. If it is not available, use 'no'.
* name_account: If run on a server, name of the account from which launch the computations.
* number_step: for how many further iteration to lauchn the protocol
* folder_model: absolute path leading to the folder './models/' stored in this folder. It contains the model and the architectures of the steganalysts networks.
* permutation_files: path to the numpy array, containing a permutation of range(1,n), where n is the total number of samples. The $train_size first indices are for the train set, the following $valid_size are for the validation set and the last $test_size are the the test set.
* data_dir_prot: folder where all the stegos and classifiers produced during the algorithm are saved.
* data_dir_cover: folder containing all cover images in the .npy format. One file for each image is required.
* data_dir_stego_0: folder containing stegos at iteration 0, in the same format as cover images.
...
...
@@ -108,7 +111,6 @@ Finally that we discussed about all the steps of the protocol, here the explanat