Update app.py
Browse files
app.py
CHANGED
|
@@ -60,8 +60,10 @@ elif source_radio == "GAME":
|
|
| 60 |
else:
|
| 61 |
col1, col2 = st.columns([3, 1])
|
| 62 |
with col1:
|
| 63 |
-
st.title(f':{st.session_state.random_class}: 있는 이미지를 업로드')
|
| 64 |
-
with col2:
|
| 65 |
if st.button('새로운 객체'):
|
| 66 |
st.session_state.random_class = object_detection.call_class()
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
|
|
|
| 60 |
else:
|
| 61 |
col1, col2 = st.columns([3, 1])
|
| 62 |
with col1:
|
|
|
|
|
|
|
| 63 |
if st.button('새로운 객체'):
|
| 64 |
st.session_state.random_class = object_detection.call_class()
|
| 65 |
+
|
| 66 |
+
with col2:
|
| 67 |
+
st.title(f':{st.session_state.random_class}: 있는 이미지를 업로드')
|
| 68 |
+
|
| 69 |
|