ameythakur commited on
Commit
dcfda4d
·
verified ·
1 Parent(s): 4edb0a5

text2video

Browse files
Files changed (2) hide show
  1. README.md +3 -0
  2. app.py +15 -0
README.md CHANGED
@@ -6,6 +6,9 @@
6
  sdk: gradio
7
  app_file: Source Code/app.py
8
  pinned: false
 
 
 
9
  ---
10
 
11
  <div align="center">
 
6
  sdk: gradio
7
  app_file: Source Code/app.py
8
  pinned: false
9
+ license: mit
10
+ short_description: Neural video studio using latent diffusion & cross attention
11
+ sdk_version: 6.6.0
12
  ---
13
 
14
  <div align="center">
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+
4
+ # Compute the path to 'Source Code' and add it to sys.path
5
+ source_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "Source Code")
6
+ sys.path.insert(0, source_dir)
7
+
8
+ # Change the current working directory to 'Source Code' so relative files like style.css are found
9
+ os.chdir(source_dir)
10
+
11
+ # Now, we just run the original app.py
12
+ from app import demo
13
+
14
+ if __name__ == "__main__":
15
+ pass