Spaces:
Build error
Build error
Commit
·
a92f78c
1
Parent(s):
eec5356
Update app.py
Browse files
app.py
CHANGED
|
@@ -354,6 +354,14 @@ def run(source, action_source, hair_source, top_source, bottom_source, target, a
|
|
| 354 |
return 'demo.gif'
|
| 355 |
|
| 356 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 357 |
gr.Interface(
|
| 358 |
fn=run,
|
| 359 |
inputs=[
|
|
@@ -382,4 +390,5 @@ gr.Interface(
|
|
| 382 |
live=False,
|
| 383 |
cache_examples=True,
|
| 384 |
title="An Anonymous Demo for TranSVAE",
|
|
|
|
| 385 |
).launch()
|
|
|
|
| 354 |
return 'demo.gif'
|
| 355 |
|
| 356 |
|
| 357 |
+
desc = """
|
| 358 |
+
Welcome to the demo page of TranSVAE, a disentanglement framework designed for unsupervised video domain adaptation. In this live demo, you are able to:
|
| 359 |
+
- Explore domain disentanglement and transfer in TranSVAE with Sprites avatars;
|
| 360 |
+
- Customize the Sprites avatars by yourself via changing their actions, hair colors, top wears, and bottom wears.
|
| 361 |
+
|
| 362 |
+
For more detailed instructions, please kindly refer to our supplementary materials. Have fun!
|
| 363 |
+
"""
|
| 364 |
+
|
| 365 |
gr.Interface(
|
| 366 |
fn=run,
|
| 367 |
inputs=[
|
|
|
|
| 390 |
live=False,
|
| 391 |
cache_examples=True,
|
| 392 |
title="An Anonymous Demo for TranSVAE",
|
| 393 |
+
description=desc
|
| 394 |
).launch()
|