YuliyaAether commited on
Commit
c96477e
·
verified ·
1 Parent(s): 2090bed

Upload 3 files

Browse files
Files changed (3) hide show
  1. README.md +11 -12
  2. app.py +7 -0
  3. requirements.txt +9 -0
README.md CHANGED
@@ -1,14 +1,13 @@
 
 
 
 
 
 
1
  ---
2
- title: FramePack Demo
3
- emoji: 👁
4
- colorFrom: blue
5
- colorTo: blue
6
- sdk: gradio
7
- sdk_version: 5.28.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: Vamos aos testes?
12
- ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
1
+ # FramePack Gradio Space
2
+
3
+ Interface Gradio para o projeto FramePack, baseada em https://github.com/lllyasviel/FramePack.
4
+
5
+ Executa interpolação de vídeo com controle estilo-frame.
6
+
7
  ---
8
+ Para rodar localmente:
 
 
 
 
 
 
 
 
 
 
9
 
10
+ ```
11
+ pip install -r requirements.txt
12
+ python app.py
13
+ ```
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from demo_gradio import FramePackDemo
3
+
4
+ demo = FramePackDemo().demo
5
+
6
+ if __name__ == "__main__":
7
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ torch
2
+ torchvision
3
+ torchaudio
4
+ einops
5
+ opencv-python-headless
6
+ transformers
7
+ accelerate
8
+ gradio
9
+ scipy