Spaces:
Sleeping
Sleeping
Commit ·
3914a1e
1
Parent(s): d8ae710
new update
Browse files- app.py +0 -1
- requirements.txt +9 -0
- test.py +0 -10
app.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
|
| 2 |
import streamlit as st
|
| 3 |
import pickle
|
| 4 |
import numpy as np
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import pickle
|
| 3 |
import numpy as np
|
requirements.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
+
numpy
|
| 3 |
+
pandas
|
| 4 |
+
scikit-learn
|
| 5 |
+
pickle-mixin
|
| 6 |
+
nltk
|
| 7 |
+
gensim
|
| 8 |
+
tensorflow
|
| 9 |
+
keras
|
test.py
DELETED
|
@@ -1,10 +0,0 @@
|
|
| 1 |
-
import pickle
|
| 2 |
-
|
| 3 |
-
downloads_path = '/Users/preethamreddygollapalli/Downloads/'
|
| 4 |
-
|
| 5 |
-
# Load the saved models
|
| 6 |
-
with open(downloads_path + 'model_test_steps.pkl', 'rb') as file:
|
| 7 |
-
model = pickle.load(file)
|
| 8 |
-
print(type(model))
|
| 9 |
-
print(model)
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|