File size: 369 Bytes
ea5450c
597eda7
ea5450c
 
 
 
747c9e3
ea5450c
 
597eda7
 
 
 
 
 
 
ea5450c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import json
import os, time
import gradio as gr
from numpy.linalg import norm
from gradio_client import Client

token = os.environ['token']

if __name__ == "__main__":
    while True:
        try:
            demo = gr.load("VTechAI/Face_demo", src="spaces", hf_token=token)
        except:
            time.sleep(10)
        else:
            break 
    demo.launch()