Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix video file not allowed to server #86

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix video file not allowed to server
  • Loading branch information
Zhivago-Sizov committed Apr 3, 2024
commit be0e1ec27bdee3d293b290c2874f54e067c513b5
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def bot_example(history, responses):
])
chat_instruct_sum = gr.State([(None, '''
👋 Hi, I'm MotionGPT! I can generate realistic human motion from text, or generate text from motion.

1. You can chat with me in pure text like generating human motion following your descriptions.
2. After generation, you can click the button in the top right of generation human motion result to download the human motion video or feature stored in .npy format.
3. With the human motion feature file downloaded or got from dataset, you are able to ask me to translate it!
Expand Down Expand Up @@ -582,4 +582,4 @@ def bot_example(history, responses):
demo.queue()

if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=8888, debug=True)
demo.launch(server_name="0.0.0.0", server_port=8888, debug=True,allowed_paths=["./assets", "./cache"])