Spaces:
Runtime error
Runtime error
maisarah1109
commited on
Commit
•
227b9b4
1
Parent(s):
b17f43c
Upload 8 files
Browse files
ANTM.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d65ffdff792baf02b50cfd8b244fbe8802fef472a71e938124a1ba71bcf0cc0
|
3 |
+
size 2919964
|
ARNA.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:07ce7d79381887ad577959f47b8b53c64d31e38545f0d4352d8275c44a063c49
|
3 |
+
size 2919964
|
DUTI.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:083b5f69e01fd97c9ea79636c7613f1e7ccd630559d6d7b18ef8c7a789730b5e
|
3 |
+
size 2919964
|
ELSA.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b858d9009d5479439c1a0c5cbf226c17e657e4e18b54c184b2e69e607c0069dc
|
3 |
+
size 2919964
|
MFMI.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:710aa28337cafa689c147042f5d22cc0476eaa4cc591162bf64c6c0fbb56e516
|
3 |
+
size 2919964
|
Procfile
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
web: sh setup.sh && streamlit run app.py
|
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
keras==2.9.0
|
2 |
+
matplotlib==3.5.2
|
3 |
+
numpy==1.23.1
|
4 |
+
pandas==1.4.3
|
5 |
+
streamlit==1.12.0
|
6 |
+
yfinance==0.1.74
|
7 |
+
tensorflow
|
setup.sh
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mkdir -p ~/.streamlit/
|
2 |
+
|
3 |
+
echo "\
|
4 |
+
[general]\n\
|
5 |
+
email = \"your-email@domain.com\"\n\
|
6 |
+
" > ~/.streamlit/credentials.toml
|
7 |
+
|
8 |
+
echo "\
|
9 |
+
[server]\n\
|
10 |
+
headless = true\n\
|
11 |
+
enableCORS=false\n\
|
12 |
+
port = $PORT\n\
|
13 |
+
" > ~/.streamlit/config.toml
|