├── .gitignore ├── README.docx ├── __init__.py ├── model ├── __init__.py ├── captcha_cracker.py ├── create_graph.py ├── load_paramter_file.py ├── nn_model.py ├── nn_model_dense_lstm.py ├── nn_model_lstm_units.py └── parse_args.py ├── notebooks ├── Display images from training data.ipynb ├── Display_images_only.ipynb ├── Inference.ipynb ├── PIL Image.ipynb ├── Sequence Inf variable length .ipynb ├── Sequence Inf variable length model but fixed images-Copy1.ipynb ├── Sequence Inf variable length model but fixed images.ipynb ├── Sequence Inference-Copy1.ipynb ├── Sequence Inference.ipynb ├── Sequence_complex.ipynb ├── Untitled3.ipynb ├── conv_weights.png └── show graphs.ipynb ├── rest_server ├── inference.py ├── lstm_variable_run_2015_11_15_22_01_04.npy.npz ├── lstm_website_2015_11_30_05_39_32.npy.npz └── server.py ├── server ├── config.json └── server.py └── training_data_gen ├── CaptchaGenerator.class ├── CaptchaGenerator.java ├── __init__.py ├── copy_files.py ├── image_preprocessor.py ├── images ├── 10_5cdff.jpg ├── 1_0cd4f463326b7dce6d8f797516d760cf.jpg ├── 1_6e515.jpg ├── 1_b97f8.jpg ├── 2_dfbdb.jpg ├── 3_eaf4d.jpg ├── 4_e7889.jpg ├── 5_06d34.jpg ├── 6_83c65.jpg ├── 7_9b731.jpg ├── 8_890e8.jpg ├── 9_fcbb9.jpg ├── captcha.jpg └── geetika.jpg ├── php_captcha.php ├── resize.py ├── simplecaptcha-1.2.1.jar ├── training_data_generator.py ├── utils.py └── vocabulary.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/README.docx -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/captcha_cracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/captcha_cracker.py -------------------------------------------------------------------------------- /model/create_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/create_graph.py -------------------------------------------------------------------------------- /model/load_paramter_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/load_paramter_file.py -------------------------------------------------------------------------------- /model/nn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/nn_model.py -------------------------------------------------------------------------------- /model/nn_model_dense_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/nn_model_dense_lstm.py -------------------------------------------------------------------------------- /model/nn_model_lstm_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/nn_model_lstm_units.py -------------------------------------------------------------------------------- /model/parse_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/model/parse_args.py -------------------------------------------------------------------------------- /notebooks/Display images from training data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Display images from training data.ipynb -------------------------------------------------------------------------------- /notebooks/Display_images_only.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Display_images_only.ipynb -------------------------------------------------------------------------------- /notebooks/Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Inference.ipynb -------------------------------------------------------------------------------- /notebooks/PIL Image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/PIL Image.ipynb -------------------------------------------------------------------------------- /notebooks/Sequence Inf variable length .ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence Inf variable length .ipynb -------------------------------------------------------------------------------- /notebooks/Sequence Inf variable length model but fixed images-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence Inf variable length model but fixed images-Copy1.ipynb -------------------------------------------------------------------------------- /notebooks/Sequence Inf variable length model but fixed images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence Inf variable length model but fixed images.ipynb -------------------------------------------------------------------------------- /notebooks/Sequence Inference-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence Inference-Copy1.ipynb -------------------------------------------------------------------------------- /notebooks/Sequence Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence Inference.ipynb -------------------------------------------------------------------------------- /notebooks/Sequence_complex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Sequence_complex.ipynb -------------------------------------------------------------------------------- /notebooks/Untitled3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/Untitled3.ipynb -------------------------------------------------------------------------------- /notebooks/conv_weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/conv_weights.png -------------------------------------------------------------------------------- /notebooks/show graphs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/notebooks/show graphs.ipynb -------------------------------------------------------------------------------- /rest_server/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/rest_server/inference.py -------------------------------------------------------------------------------- /rest_server/lstm_variable_run_2015_11_15_22_01_04.npy.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/rest_server/lstm_variable_run_2015_11_15_22_01_04.npy.npz -------------------------------------------------------------------------------- /rest_server/lstm_website_2015_11_30_05_39_32.npy.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/rest_server/lstm_website_2015_11_30_05_39_32.npy.npz -------------------------------------------------------------------------------- /rest_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/rest_server/server.py -------------------------------------------------------------------------------- /server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/server/config.json -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/server/server.py -------------------------------------------------------------------------------- /training_data_gen/CaptchaGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/CaptchaGenerator.class -------------------------------------------------------------------------------- /training_data_gen/CaptchaGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/CaptchaGenerator.java -------------------------------------------------------------------------------- /training_data_gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training_data_gen/copy_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/copy_files.py -------------------------------------------------------------------------------- /training_data_gen/image_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/image_preprocessor.py -------------------------------------------------------------------------------- /training_data_gen/images/10_5cdff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/10_5cdff.jpg -------------------------------------------------------------------------------- /training_data_gen/images/1_0cd4f463326b7dce6d8f797516d760cf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/1_0cd4f463326b7dce6d8f797516d760cf.jpg -------------------------------------------------------------------------------- /training_data_gen/images/1_6e515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/1_6e515.jpg -------------------------------------------------------------------------------- /training_data_gen/images/1_b97f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/1_b97f8.jpg -------------------------------------------------------------------------------- /training_data_gen/images/2_dfbdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/2_dfbdb.jpg -------------------------------------------------------------------------------- /training_data_gen/images/3_eaf4d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/3_eaf4d.jpg -------------------------------------------------------------------------------- /training_data_gen/images/4_e7889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/4_e7889.jpg -------------------------------------------------------------------------------- /training_data_gen/images/5_06d34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/5_06d34.jpg -------------------------------------------------------------------------------- /training_data_gen/images/6_83c65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/6_83c65.jpg -------------------------------------------------------------------------------- /training_data_gen/images/7_9b731.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/7_9b731.jpg -------------------------------------------------------------------------------- /training_data_gen/images/8_890e8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/8_890e8.jpg -------------------------------------------------------------------------------- /training_data_gen/images/9_fcbb9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/9_fcbb9.jpg -------------------------------------------------------------------------------- /training_data_gen/images/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/captcha.jpg -------------------------------------------------------------------------------- /training_data_gen/images/geetika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/images/geetika.jpg -------------------------------------------------------------------------------- /training_data_gen/php_captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/php_captcha.php -------------------------------------------------------------------------------- /training_data_gen/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/resize.py -------------------------------------------------------------------------------- /training_data_gen/simplecaptcha-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/simplecaptcha-1.2.1.jar -------------------------------------------------------------------------------- /training_data_gen/training_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/training_data_generator.py -------------------------------------------------------------------------------- /training_data_gen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/utils.py -------------------------------------------------------------------------------- /training_data_gen/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgeetika/Captcha-Decoder/HEAD/training_data_gen/vocabulary.py --------------------------------------------------------------------------------