# tf_verification_code_recognition **Repository Path**: hugh_sun/tf_verification_code_recognition ## Basic Information - **Project Name**: tf_verification_code_recognition - **Description**: 验证码识别(深度学习) - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Verification Code Recognition with Tensorflow There are two method of the verification code recognition with Tensorflow, one using gray level image process and the other using three channel RGB image process. # Requirements To play with the trained model or to train the model, only need: * Python >=3.5.4 * Tensorflow ==1.4.0 # Getting Started ## Gray level image process method(Recommendation) To train the model, directly run: ```python python cnn_train.py ``` To play with the trained model for prediction, run: ```python python cnn_predict.py ``` ## Three channel image process method To train the model, directly run: ```python python cnn3_train.py ``` To play with the trained model for prediction, run: ```python python cnn3_predict.py ```