File size: 417 Bytes
fa6525c
 
8c9883e
fa6525c
 
 
 
 
 
 
9f7e2d7
 
1
2
3
4
5
6
7
8
9
10
11
12
from huggingface_hub import Repository
import gradio as gr
import os

token = os.environ['model_fetch']

anonymizer_repo = Repository(local_dir="pipeline", clone_from="felixrosberg/EngageStudiosAutomotiveLoRA", use_auth_token=token)

from pipeline.sdxl_engage_lora_gradio_UI_class import EngageUI

ui = EngageUI(lora_path="pipeline/LoRA/sd-midjourney-car-1024-finetuned-lora-rank-128-v8/checkpoint-18000")
ui.run_ui()