brannondorsey / PassGAN

A Deep Learning Approach for Password Guessing (https://arxiv.org/abs/1709.00440)
MIT License
1.78k stars 362 forks source link

i have three training datas. How to use train.py to process these data? #9

Closed Explorer1092 closed 5 years ago

brannondorsey commented 6 years ago

How do you mean? Would you like to train one model with the combined datasets or train three different models?

If you would like to do the first, simply combine all three datasets into one file. If you would like to do the second, then simply train three different models:

python train.py --output-dir model-1 --training-data data/model-1-training-data.txt
python train.py --output-dir model-2 --training-data data/model-2-training-data.txt
python train.py --output-dir model-3 --training-data data/model-3-training-data.txt