Update app.py
Browse files
app.py
CHANGED
@@ -89,8 +89,8 @@ def predict(input_image):
|
|
89 |
if mol_image is None:
|
90 |
return "Invalid SMILES", None
|
91 |
|
92 |
-
|
93 |
-
return mol_rebuit, smiles
|
94 |
|
95 |
except Exception as e:
|
96 |
return f"Error: {str(e)}", None
|
|
|
89 |
if mol_image is None:
|
90 |
return "Invalid SMILES", None
|
91 |
|
92 |
+
return mol_image, smiles
|
93 |
+
# return mol_rebuit, smiles
|
94 |
|
95 |
except Exception as e:
|
96 |
return f"Error: {str(e)}", None
|