tayyardurden commited on
Commit
e6f4218
·
verified ·
1 Parent(s): 611c96d

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -30
app.py DELETED
@@ -1,30 +0,0 @@
1
- import streamlit as st
2
- from product_similarity import page1
3
-
4
- # sidebar
5
- st.sidebar.title("Deep Fashion")
6
- st.sidebar.write(
7
- "Deep Fashion, giyim ve moda sektörüne yönelik yapay zeka tabanlı çözümler sunar. ")
8
-
9
-
10
- def page2():
11
- from tensorflow.keras.applications import VGG16 # Assuming you have these models
12
-
13
- st.title("Ürün Detay Analizi")
14
- st.write("Welcome to page 2")
15
-
16
-
17
- PAGES = {
18
- "Ürün Benzerlik Analizi": page1,
19
- "Ürün Detay Tahminleyci": page2,
20
- }
21
-
22
-
23
- def main():
24
- selection = st.sidebar.radio("Özellik seçin:", list(PAGES.keys()))
25
- page = PAGES[selection]
26
- page()
27
-
28
-
29
- if __name__ == "__main__":
30
- main()