This is a fork from Skyduy's model
Solves captcha generated by the Sphinx Captcha Generator
Install the requirements using:
pip install -r requirements.txt
To train the neural network, run:
python train.py
some few arguments are:
usage: train.py [-h] [--epochs EPOCHS] [--verbose VERBOSE] [--gpu]
[--gpu-false]
Neural Network to break captchas
optional arguments:
-h, --help show this help message and exit
--epochs EPOCHS Number of epochs to be executed
--verbose VERBOSE Show data at each N value
--gpu-false forces model to run on CPU
After the neural network is trained you can predict images by executing:
python predict.py --path path/to/image
Some other few arguments are:
usage: predict.py [-h] --path PATH [--debug]
Predict captchas using CNN
optional arguments:
-h, --help show this help message and exit
--path PATH, -p PATH Path to the captcha image
--debug Run in debug mode