Commit
·
5128e4c
1
Parent(s):
aacc039
modified: main.py
Browse files- main.py +0 -3
- requirements.txt +2 -0
main.py
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
from streamlit_option_menu import option_menu
|
3 |
-
import streamlit.components.v1 as components
|
4 |
from tensorflow import keras
|
5 |
import tensorflow as tf
|
6 |
import numpy as np
|
7 |
-
import cv2
|
8 |
-
import io
|
9 |
import pandas as pd
|
10 |
import os
|
11 |
os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_option_menu import option_menu
|
|
|
3 |
from tensorflow import keras
|
4 |
import tensorflow as tf
|
5 |
import numpy as np
|
|
|
|
|
6 |
import pandas as pd
|
7 |
import os
|
8 |
os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
streamlit==1.14.0
|
2 |
+
streamlit_option_menu==0.3.2
|