This project is designed to predict medicine dosage and prescriptions based on input data using machine learning models.
- Forking the Repository
- Installing dependencies
- Setting Up the Environment
- Running the Project
- Project Structure
- License
To fork the repository, follow these steps:(forking steps)
- Navigate to the repository page on GitHub.
- Click the "Fork" button at the top-right corner of the page.
- Choose your GitHub account to fork the repository to.
Once you have forked the repository, you can clone it to your local machine:
https://github.com/your-username/Medicine_Predictor_with_streamlit.git
cd Medicine_Predictor_with_streamlit
pip install -r requirements.txt
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
python run ml_model.py # To generate new .pkl files for the ML model.
streamlit run app.py
.
├── app.py # Main application file
├── Dataset.csv # Dataset file used for training the models
├── dosage_predictor.pkl # Pre-trained dosage predictor model
├── label_encoders.pkl # Label encoders for categorical variables
├── medicine_predictor.pkl # Pre-trained medicine predictor model
├── ml_model.py # Script to train and evaluate models
├── requirements.txt # List of dependencies
└── README.md # Project documentation
Feel free to adjust any sections to better fit your project's specifics or additional information you would like to include.