Spaces:
Runtime error
Runtime error
debugging: print iso time of app launch, model & dataset links
Browse files
app.py
CHANGED
|
@@ -25,6 +25,9 @@ _model = InferenceUNetPseudo3D(
|
|
| 25 |
hf_auth_token = os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
|
| 26 |
)
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
if _model.failed != False:
|
| 29 |
trace = f'```{_model.failed}```'
|
| 30 |
with gr.Blocks(title = 'Make-A-Video Stable Diffusion JAX', analytics_enabled = False) as demo:
|
|
@@ -151,9 +154,10 @@ with gr.Blocks(title = 'Make-A-Video Stable Diffusion JAX', analytics_enabled =
|
|
| 151 |
Only the new temporal layers have been fine tuned on a dataset of videos themed around dance.
|
| 152 |
The model has been trained for 80 epochs on a dataset of 18,000 Videos with 120 frames each, randomly selecting a 24 frame range from each sample.
|
| 153 |
|
| 154 |
-
|
|
|
|
| 155 |
|
| 156 |
-
Model implementation and training code can be found at <https://github.com/lopho/makeavid-sd-tpu>
|
| 157 |
""")
|
| 158 |
with gr.Column():
|
| 159 |
intro3 = gr.Markdown("""
|
|
|
|
| 25 |
hf_auth_token = os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
|
| 26 |
)
|
| 27 |
|
| 28 |
+
import datetime
|
| 29 |
+
print(datetime.datetime.now(datetime.timezone.utc).isoformat())
|
| 30 |
+
|
| 31 |
if _model.failed != False:
|
| 32 |
trace = f'```{_model.failed}```'
|
| 33 |
with gr.Blocks(title = 'Make-A-Video Stable Diffusion JAX', analytics_enabled = False) as demo:
|
|
|
|
| 154 |
Only the new temporal layers have been fine tuned on a dataset of videos themed around dance.
|
| 155 |
The model has been trained for 80 epochs on a dataset of 18,000 Videos with 120 frames each, randomly selecting a 24 frame range from each sample.
|
| 156 |
|
| 157 |
+
Model: [TempoFunk/makeavid-sd-jax](https://huggingface.co/TempoFunk/makeavid-sd-jax)
|
| 158 |
+
Datasets: [TempoFunk/tempofunk-sdance](https://huggingface.co/datasets/TempoFunk/tempofunk-sdance), [TempoFunk/small](https://huggingface.co/datasets/TempoFunk/small)
|
| 159 |
|
| 160 |
+
Model implementation and training code can be found at <https://github.com/lopho/makeavid-sd-tpu> (WIP)
|
| 161 |
""")
|
| 162 |
with gr.Column():
|
| 163 |
intro3 = gr.Markdown("""
|