Spaces:
Runtime error
Runtime error
finished app no frills
Browse files
app.py
CHANGED
|
@@ -101,6 +101,7 @@ def train_and_inference(api_key, ontology_id, model_run_id):
|
|
| 101 |
|
| 102 |
response = requests.get(url, stream=True)
|
| 103 |
response.raise_for_status()
|
|
|
|
| 104 |
|
| 105 |
with open(os.path.join(destination_folder, filename), 'wb') as file:
|
| 106 |
for chunk in response.iter_content(8192):
|
|
|
|
| 101 |
|
| 102 |
response = requests.get(url, stream=True)
|
| 103 |
response.raise_for_status()
|
| 104 |
+
st.write(url)
|
| 105 |
|
| 106 |
with open(os.path.join(destination_folder, filename), 'wb') as file:
|
| 107 |
for chunk in response.iter_content(8192):
|