Skip to content

Commit 5b83163

Browse files
Update README.md
1 parent ff3c653 commit 5b83163

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ python ml/training.py -d CIFAR10
3939

4040
For each dataset, this will create a `cnn.pt` (inference model), `detector.pkl` (covariate drift detector), `encoder.pt` (dimensionality reduction model) and `transformer.pt` (preprocessing object) files in the `ml/objects` directory.
4141

42-
In addition, `cnn.pt` and `transformer.pt` are stored in the `model_inference_api/app/objects` directory. `encoder.pt` and `transformer.pt` are stored in the `dimensionality_reduction_api/app/objects` directory. `detector.pkl` is stored in the `detector_api/app/objects` directory.
42+
In addition, `cnn.pt` and `transformer.pt` are also stored in the `model_inference_api/app/objects` directory. `encoder.pt` and `transformer.pt` are stored in the `dimensionality_reduction_api/app/objects` directory. `detector.pkl` is stored in the `detector_api/app/objects` directory.
43+
44+
The training script will also generate two plots for each dataset with the losses (train and validation) for the autoencoder and the model.
4345

4446
## Testing
4547

@@ -103,6 +105,13 @@ make build-dimensionality-reduction
103105
make build-covariate-drift-detector
104106
```
105107

108+
## Plots
109+
110+
The transformations plots in the paper can be generated by running the following command:
111+
112+
```bash
113+
python ml/plot.py
114+
```
106115

107116
## Citation
108117

0 commit comments

Comments
 (0)