Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,7 @@ def predict(image):
|
|
71 |
|
72 |
def load_readme():
|
73 |
try:
|
74 |
-
with open('
|
75 |
return file.read()
|
76 |
except FileNotFoundError:
|
77 |
return "README.md file not found. Please make sure it exists in the same directory as this script."
|
|
|
71 |
|
72 |
def load_readme():
|
73 |
try:
|
74 |
+
with open('README_DESC.md', 'r') as file:
|
75 |
return file.read()
|
76 |
except FileNotFoundError:
|
77 |
return "README.md file not found. Please make sure it exists in the same directory as this script."
|