File size: 1,969 Bytes
c2d4056
 
 
a2c05a5
 
 
5a51b84
9e7ee92
5a51b84
5558446
c2d4056
 
 
 
3659910
 
 
 
 
c9c36cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ff68179
c9c36cb
5a51b84
c9c36cb
03e69dc
 
c9c36cb
 
 
03e69dc
 
c9c36cb
ff68179
c9c36cb
363d8a1
c9c36cb
 
5a51b84
c9c36cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2c05a5
c2d4056
c9c36cb
c2d4056
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import gradio as gr
import spaces
import torch
import gdown
import os
import setup_environment
import zipfile
import sys
from setup_environment import initialize_environment
from download import download_files_from_url

zero = torch.Tensor([0]).cuda()
print(zero.device) # <-- 'cpu' ๐Ÿค”

download_files_from_url()

initialize_environment()


sys.path.append('/home/user/.local/lib/python3.10/site-packages')
sys.path.append('/home/user/.local/lib/python3.10/site-packages/stf_alternative/src/stf_alternative')
sys.path.append('/home/user/.local/lib/python3.10/site-packages/stf_tools/src/stf_tools')
sys.path.append('/tmp/')
sys.path.append('/tmp/stf/')
sys.path.append('/tmp/stf/stf_alternative/')
sys.path.append('/tmp/stf/stf_alternative/src/stf_alternative')



# CUDA ๊ฒฝ๋กœ๋ฅผ ํ™˜๊ฒฝ ๋ณ€์ˆ˜๋กœ ์„ค์ •
os.environ['PATH'] = '/usr/local/cuda/bin:' + os.environ.get('PATH', '')
os.environ['LD_LIBRARY_PATH'] = '/usr/local/cuda/lib64:' + os.environ.get('LD_LIBRARY_PATH', '')
# ํ™•์ธ์šฉ ์ถœ๋ ฅ
print("PATH:", os.environ['PATH'])
print("LD_LIBRARY_PATH:", os.environ['LD_LIBRARY_PATH'])
    
from stf_utils import STFPipeline

stf_pipeline = STFPipeline()


@spaces.GPU(duration=120)
def gpu_wrapped_stf_pipeline_execute(audio_path):
    return stf_pipeline.execute(audio_path)


driving_video_path=gr.Video()

with gr.Blocks(theme=gr.themes.Soft()) as demo:
    audio_path_component = gr.Audio(label="Upload or Record an audio", type="filepath")
    stf_button = gr.Button("stf test", variant="primary")
    driving_video_path.render()
    
    stf_button.click(
                fn=gpu_wrapped_stf_pipeline_execute,
                inputs=[
                    audio_path_component
                ],
                outputs=[driving_video_path]
            )




# @spaces.GPU
# def greet(n):
#     print(zero.device) # <-- 'cuda:0' ๐Ÿค—
#     return f"Hello {zero + n} Tensor"



#demo = gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text())
demo.launch()