Shivashankar/Drug-Classification
0
1# CICD-for-Machine-Learning2 3Learn how to automate model training, evaluation, versioning, and deployment using GitHub Actions with the easiest MLOps guide available online.4 5## Project Description6In this project, we will be using scikit-learn pipelines to train our random forest algorithm and build a drug classifier. After training, we will automate the evaluation process using CML. Finally, we will build and deploy the web application to Hugging Face Hub. 7 8From training to evaluation, the entire process will be automated using GitHub actions. All you have to do is push the code to your GitHub repository, and within two minutes, the model will be updated on Hugging Face with the updated app, model, and results.9 10 11 12## Pipeline13 14 1516 17## Results18| Model | Accuracy | F1 Score |19|------------------------|----------|----------|20| RandomForestClassifier | 97.0% | 94.0% |21 2223 