├── .gitignore ├── README.md ├── artifacts ├── model.pkl ├── preprocessor.pkl ├── raw.csv ├── test.csv └── train.csv ├── notebooks ├── EDA.ipynb ├── Model Training.ipynb └── data │ └── gemstone.csv ├── requirements.txt ├── setup.py └── src ├── __init__.py ├── components ├── __init__.py ├── data_ingestion.py ├── data_transformation.py └── model_trainer.py ├── exception.py ├── logger.py ├── pipelines ├── __init__.py ├── prediction_pipeline.py └── training_pipeline.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## MAchine Learning Project -------------------------------------------------------------------------------- /artifacts/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/artifacts/model.pkl -------------------------------------------------------------------------------- /artifacts/preprocessor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/artifacts/preprocessor.pkl -------------------------------------------------------------------------------- /artifacts/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/artifacts/raw.csv -------------------------------------------------------------------------------- /artifacts/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/artifacts/test.csv -------------------------------------------------------------------------------- /artifacts/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/artifacts/train.csv -------------------------------------------------------------------------------- /notebooks/EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/notebooks/EDA.ipynb -------------------------------------------------------------------------------- /notebooks/Model Training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/notebooks/Model Training.ipynb -------------------------------------------------------------------------------- /notebooks/data/gemstone.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/notebooks/data/gemstone.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | flask 4 | seaborn 5 | scikit-learn 6 | #-e . -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/components/data_ingestion.py -------------------------------------------------------------------------------- /src/components/data_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/components/data_transformation.py -------------------------------------------------------------------------------- /src/components/model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/components/model_trainer.py -------------------------------------------------------------------------------- /src/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/exception.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pipelines/prediction_pipeline.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pipelines/training_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/pipelines/training_pipeline.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/DiamondPricePrediction1/HEAD/src/utils.py --------------------------------------------------------------------------------