├── .github └── workflows │ └── main_recommendationsystems.yml ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── artifacts ├── Sales_Amazon_Cleaned_final.csv ├── data.csv ├── model.pkl ├── proprocessor.pkl ├── test.csv ├── testmodel.h5 └── train.csv ├── requirements.txt ├── setup.py ├── src ├── __init__.py ├── components │ ├── __init__.py │ ├── data_ingestion.py │ ├── data_transformation.py │ └── model_trainer.py ├── exception.py ├── logger.py ├── models.py ├── pipeline │ ├── __init__.py │ └── predict_pipeline.py └── utils.py └── templates ├── home.html └── index.html /.github/workflows/main_recommendationsystems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/.github/workflows/main_recommendationsystems.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/app.py -------------------------------------------------------------------------------- /artifacts/Sales_Amazon_Cleaned_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/Sales_Amazon_Cleaned_final.csv -------------------------------------------------------------------------------- /artifacts/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/data.csv -------------------------------------------------------------------------------- /artifacts/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/model.pkl -------------------------------------------------------------------------------- /artifacts/proprocessor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/proprocessor.pkl -------------------------------------------------------------------------------- /artifacts/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/test.csv -------------------------------------------------------------------------------- /artifacts/testmodel.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/testmodel.h5 -------------------------------------------------------------------------------- /artifacts/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/artifacts/train.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/components/data_ingestion.py -------------------------------------------------------------------------------- /src/components/data_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/components/data_transformation.py -------------------------------------------------------------------------------- /src/components/model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/components/model_trainer.py -------------------------------------------------------------------------------- /src/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/exception.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/models.py -------------------------------------------------------------------------------- /src/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pipeline/predict_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/pipeline/predict_pipeline.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/src/utils.py -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harly-1506/MLOps-Recommendation/HEAD/templates/index.html --------------------------------------------------------------------------------