Views
No views yet
resume-classifier/
├── data/
│ └── resume_dataset.csv
├── models/
│ ├── resume_model.pth
│ ├── model_config.pkl
│ ├── preprocessor.pkl
│ └── training_history.npy
├── src/
│ ├── __init__.py
│ ├── data_preprocessing.py
│ ├── model.py
│ ├── train.py
│ └── predict.py
├── templates/
│ └── index.html
├── app.py
├── main.py
└── requirements.txtpip install -r requirements.txt1python main.py --mode train \
2 --data-dir data \
3 --epochs 20 \
4 --batch-size 32 \
5 --model-type rnn \
6 --use-attention \
7 --bidirectionalpython app.pyResume: The text content of the resumeCategory: The job category/label