Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -174,6 +174,9 @@ def transform_string(input_str):
|
|
| 174 |
def main():
|
| 175 |
# download_stockfish()
|
| 176 |
st.title("Chessboard Position Detection and Move Prediction")
|
|
|
|
|
|
|
|
|
|
| 177 |
|
| 178 |
# User uploads an image or captures it from their camera
|
| 179 |
image_file = st.camera_input("Capture a chessboard image") or st.file_uploader("Upload a chessboard image", type=["jpg", "jpeg", "png"])
|
|
|
|
| 174 |
def main():
|
| 175 |
# download_stockfish()
|
| 176 |
st.title("Chessboard Position Detection and Move Prediction")
|
| 177 |
+
import os
|
| 178 |
+
st.write(os.getcwd())
|
| 179 |
+
|
| 180 |
|
| 181 |
# User uploads an image or captures it from their camera
|
| 182 |
image_file = st.camera_input("Capture a chessboard image") or st.file_uploader("Upload a chessboard image", type=["jpg", "jpeg", "png"])
|