Spaces:
Runtime error
Runtime error
Zeimoto
commited on
Commit
•
aed550f
1
Parent(s):
2e08dfb
fixed print seconds
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ def main ():
|
|
41 |
st.write('Entities: ', get_entity_labels(model=ner, text=translation))
|
42 |
loading_elapsedtime = audit_elapsedtime(function="Loading data", start=start_loading)
|
43 |
|
44 |
-
st.write(f"Total elapsed time: {int(loading_elapsedtime/60)} minutes and {loading_elapsedtime%60} seconds")
|
45 |
|
46 |
|
47 |
if __name__ == "__main__":
|
|
|
41 |
st.write('Entities: ', get_entity_labels(model=ner, text=translation))
|
42 |
loading_elapsedtime = audit_elapsedtime(function="Loading data", start=start_loading)
|
43 |
|
44 |
+
st.write(f"Total elapsed time: {int(loading_elapsedtime/60)} minutes and {int(loading_elapsedtime%60)} seconds")
|
45 |
|
46 |
|
47 |
if __name__ == "__main__":
|