Update app.py
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ def detect_landmarks(image):
|
|
81 |
|
82 |
# Tahmini bir metin dosyasına yaz
|
83 |
# Tahmini bir metin dosyasına yaz
|
84 |
-
with open("
|
85 |
file.write(prediction)
|
86 |
|
87 |
return image, prediction
|
|
|
81 |
|
82 |
# Tahmini bir metin dosyasına yaz
|
83 |
# Tahmini bir metin dosyasına yaz
|
84 |
+
with open("./prediction.txt", "w", encoding='utf-8') as file:
|
85 |
file.write(prediction)
|
86 |
|
87 |
return image, prediction
|