├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── LRClassifier.pkl ├── Logistic Regression.ipynb ├── README.md ├── main.py └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /LRClassifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/LRClassifier.pkl -------------------------------------------------------------------------------- /Logistic Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/Logistic Regression.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripathiAshutosh/FastAPI/HEAD/requirements.txt --------------------------------------------------------------------------------