openfree commited on
Commit
346d452
ยท
verified ยท
1 Parent(s): 9ac9ea2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -840,6 +840,12 @@ def generate_script(topic):
840
  except Exception as e:
841
  print(f"Error during script generation: {e}")
842
  return "์Šคํฌ๋ฆฝํŠธ ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค."
 
 
 
 
 
 
843
 
844
  # Gradio Interface Definition
845
  with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange") as iface:
 
840
  except Exception as e:
841
  print(f"Error during script generation: {e}")
842
  return "์Šคํฌ๋ฆฝํŠธ ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค."
843
+
844
+
845
+ def cleanup():
846
+ """๋ฉ”๋ชจ๋ฆฌ ์ •๋ฆฌ ํ•จ์ˆ˜"""
847
+ torch.cuda.empty_cache()
848
+ gc.collect()
849
 
850
  # Gradio Interface Definition
851
  with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange") as iface: