seawolf2357 commited on
Commit
50d8012
·
verified ·
1 Parent(s): 5174dc4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -6,6 +6,13 @@ from gradio_client import Client # 가정: gradio_client 라이브러리가 사
6
  image_model = pipeline("image-classification", model="google/vit-base-patch16-224")
7
 
8
  def generate_music(prompt):
 
 
 
 
 
 
 
9
  # 음악 생성 API 호출
10
  client = Client("https://haoheliu-audioldm2-text2audio-text2music.hf.space/")
11
  result = client.predict(
 
6
  image_model = pipeline("image-classification", model="google/vit-base-patch16-224")
7
 
8
  def generate_music(prompt):
9
+ # 기본 프롬프트 설정
10
+ base_prompt = "The rnb beat of 85BPM drums. playing Violin."
11
+ # 사물 인식 결과를 기본 프롬프트에 추가
12
+ full_prompt = f"{base_prompt} for a {object_detected}"
13
+ # 부정적인 프롬프트 추가
14
+ negative_prompt = "Low quality."
15
+
16
  # 음악 생성 API 호출
17
  client = Client("https://haoheliu-audioldm2-text2audio-text2music.hf.space/")
18
  result = client.predict(