Spaces:
Sleeping
Sleeping
clean up
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
from pydoc import describe
|
2 |
import comet_ml
|
3 |
import uuid
|
4 |
import gradio as gr
|
@@ -24,9 +23,9 @@ class MyProject:
|
|
24 |
if not comet_api_key:
|
25 |
return """
|
26 |
Please add your API key in order to log your predictions to a Comet Experiment.
|
27 |
-
If you don't have a Comet account yet, you can sign up
|
28 |
|
29 |
-
https://www.comet.ml/signup
|
30 |
"""
|
31 |
|
32 |
else:
|
@@ -60,7 +59,7 @@ class MyProject:
|
|
60 |
start_experiment = gr.Button("Start Experiment", variant="primary")
|
61 |
end_experiment = gr.Button("End Experiment", variant="secondary")
|
62 |
|
63 |
-
output = gr.
|
64 |
|
65 |
start_experiment.click(
|
66 |
self.start_experiment,
|
|
|
|
|
1 |
import comet_ml
|
2 |
import uuid
|
3 |
import gradio as gr
|
|
|
23 |
if not comet_api_key:
|
24 |
return """
|
25 |
Please add your API key in order to log your predictions to a Comet Experiment.
|
26 |
+
If you don't have a Comet account yet, you can sign up using the link below:
|
27 |
|
28 |
+
[Sign Up for Comet](https://www.comet.ml/signup)
|
29 |
"""
|
30 |
|
31 |
else:
|
|
|
59 |
start_experiment = gr.Button("Start Experiment", variant="primary")
|
60 |
end_experiment = gr.Button("End Experiment", variant="secondary")
|
61 |
|
62 |
+
output = gr.Markdown(label="Status")
|
63 |
|
64 |
start_experiment.click(
|
65 |
self.start_experiment,
|