├── .gitignore ├── GenCaptcha.py ├── LICENSE ├── README.md ├── ctcmain.py ├── ctcmodel.py ├── data └── .gitignore ├── data_utils_torch.py ├── fonts └── .gitignore ├── images └── epoch_error.png ├── main.py ├── model.py ├── results └── .gitignore └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/.gitignore -------------------------------------------------------------------------------- /GenCaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/GenCaptcha.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/README.md -------------------------------------------------------------------------------- /ctcmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/ctcmain.py -------------------------------------------------------------------------------- /ctcmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/ctcmodel.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data_utils_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/data_utils_torch.py -------------------------------------------------------------------------------- /fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/fonts/.gitignore -------------------------------------------------------------------------------- /images/epoch_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/images/epoch_error.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/model.py -------------------------------------------------------------------------------- /results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/results/.gitignore -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airaria/CaptchaRecognition/HEAD/utils.py --------------------------------------------------------------------------------