Closed nabinabila closed 3 years ago
I wanna use the project, how could i run it and have models results (the visualization and evaluation metrics) ?
In the most basic setting, you would need to:
requirements.txt
.data/train
folder, in the project root directory.train.py
(https://github.com/Valentyn1997/xray/blob/master/src/models/train.py) and monitor models on MlFlow server.There are also some scripts for data preprocessing in https://github.com/Valentyn1997/xray/tree/master/src/features (e.g. cropping and hand-detection).
Regarding point 4: You need to specify the model in line 27. Currently you can choose between: AlphaGan, BottleneckAutoencoder, BaselineAutoencoder, DCGAN, SAGAN and VAE.
Do you mean, you need specific model weights? Unfortunately, we don't anymore store the weights of the models, reported in the paper.
I mean one needs to specify the model one wants to train in the line 27 in the train.py file.
I wanna use the project, how could i run it and have models results (the visualization and evaluation metrics) ?