├── LICENSE ├── README.md ├── data └── rt-polaritydata │ ├── rt-polarity.neg │ └── rt-polarity.pos ├── data_helpers.py ├── eval.py ├── text_cnn.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/README.md -------------------------------------------------------------------------------- /data/rt-polaritydata/rt-polarity.neg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/data/rt-polaritydata/rt-polarity.neg -------------------------------------------------------------------------------- /data/rt-polaritydata/rt-polarity.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/data/rt-polaritydata/rt-polarity.pos -------------------------------------------------------------------------------- /data_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/data_helpers.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/eval.py -------------------------------------------------------------------------------- /text_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/text_cnn.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Resumes/HEAD/train.py --------------------------------------------------------------------------------