From a1e9dc97ea3cfd2d0e140ed7a88356113b69336b Mon Sep 17 00:00:00 2001 From: Suraj Singh Rajput Date: Thu, 1 Oct 2020 14:52:12 +0530 Subject: [PATCH 1/4] Update requirements.txt --- Deploying ML Flask App to GCP/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Deploying ML Flask App to GCP/requirements.txt b/Deploying ML Flask App to GCP/requirements.txt index 9d2f7d9..f3cab5b 100644 --- a/Deploying ML Flask App to GCP/requirements.txt +++ b/Deploying ML Flask App to GCP/requirements.txt @@ -4,3 +4,4 @@ pandas==0.22.0 numpy==1.11.2 scipy==0.18.1 scikit-learn>=0.18 +#Add new version of dependencies. From 2200215744501b11d86fee959491fdf6f8e4574d Mon Sep 17 00:00:00 2001 From: Suraj Singh Rajput Date: Thu, 1 Oct 2020 15:18:13 +0530 Subject: [PATCH 2/4] Update README.md --- gender_classifier_mlapp_with_streamlit/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gender_classifier_mlapp_with_streamlit/README.md b/gender_classifier_mlapp_with_streamlit/README.md index ae8cd44..ebd1fe7 100644 --- a/gender_classifier_mlapp_with_streamlit/README.md +++ b/gender_classifier_mlapp_with_streamlit/README.md @@ -12,7 +12,9 @@ #### Prediction ![](images/gc_app04.png) +### Add a requirements.txt and setup.sh file for deployment + #### By + Jesse E.Agbe(JCharis) -+ Jesus Saves@[JCharisTech](https://jcharistech.com) \ No newline at end of file ++ Jesus Saves@[JCharisTech](https://jcharistech.com) From 6eebef5abf5985cc7550624f353d547d8b38f47a Mon Sep 17 00:00:00 2001 From: Suraj Singh Rajput Date: Thu, 1 Oct 2020 15:35:40 +0530 Subject: [PATCH 3/4] Update app.py --- Bible-Verse-Prediction-ML-App/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bible-Verse-Prediction-ML-App/app.py b/Bible-Verse-Prediction-ML-App/app.py index 3fb22d7..b6b693e 100644 --- a/Bible-Verse-Prediction-ML-App/app.py +++ b/Bible-Verse-Prediction-ML-App/app.py @@ -2,7 +2,7 @@ import pandas as pd import numpy as np -# ML Packages +# ML Packages Add a requirements text file and new version of dependencies. from sklearn.feature_extraction.text import CountVectorizer from sklearn.externals import joblib @@ -48,4 +48,4 @@ def predict(): if __name__ == '__main__': app.run(debug=True) - \ No newline at end of file + From 6b6360e1c6483d85f96c8be7a38dec91e73faf4b Mon Sep 17 00:00:00 2001 From: Suraj Singh Rajput Date: Thu, 1 Oct 2020 15:38:43 +0530 Subject: [PATCH 4/4] Update app.py --- Youtube-Spam-Detector-ML-Flask-App/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Youtube-Spam-Detector-ML-Flask-App/app.py b/Youtube-Spam-Detector-ML-Flask-App/app.py index f5dd1b4..0a9d352 100644 --- a/Youtube-Spam-Detector-ML-Flask-App/app.py +++ b/Youtube-Spam-Detector-ML-Flask-App/app.py @@ -4,7 +4,7 @@ from sklearn.feature_extraction.text import CountVectorizer from sklearn.naive_bayes import MultinomialNB from sklearn.externals import joblib - +#Add requirements file and new version dependencies. app = Flask(__name__) @@ -44,4 +44,4 @@ def predict(): if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + app.run(debug=True)