aliceblue11 commited on
Commit
a68216d
·
verified ·
1 Parent(s): 7102663

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -17
app.py CHANGED
@@ -75,17 +75,11 @@ with gr.Blocks() as demo:
75
  excel_output_positive = gr.Textbox(label="긍정리뷰 10개", lines=10)
76
  excel_output_negative = gr.Textbox(label="부정리뷰 10개", lines=10)
77
 
78
- # 사용자 메시지의 명칭을 '긍정리뷰 10개'로 설정
79
- user_message = gr.Textbox(label="긍정리뷰 10개", lines=5)
80
-
81
- # 입력창 1의 명칭을 '부정리뷰 10개'로 설정
82
- input1 = gr.Textbox(label="부정리뷰 10개", lines=5)
83
-
84
- # 시스템 메시지(프롬프트)의 명칭을 '긍정 프롬프트'로 설정
85
  system_message = gr.Textbox(label="긍정 프롬프트", lines=10)
86
 
87
- # 입력창 2의 명칭을 '부정 프롬프트'로 설정
88
- input2 = gr.Textbox(label="부정 프롬프트")
89
 
90
  # 출력창 1의 명칭을 '긍정리뷰분석'으로 설정
91
  output1 = gr.Textbox(label="긍정리뷰분석", lines=10)
@@ -98,13 +92,6 @@ with gr.Blocks() as demo:
98
  temperature = gr.Slider(label="Temperature", minimum=0.1, maximum=1.0, value=0.75, step=0.05)
99
  top_p = gr.Slider(label="Top P", minimum=0.1, maximum=1.0, value=0.95, step=0.05)
100
 
101
- # 실행 버튼 추가
102
- generate_btn = gr.Button("텍스트 생성하기")
103
-
104
- generate_btn.click(fn=generate_text,
105
- inputs=[user_message, system_message, max_tokens, temperature, top_p],
106
- outputs=[output1, output2])
107
-
108
  # 엑셀 파일 업로드 후 긍정리뷰 10개와 부정리뷰 10개를 출력
109
  excel_input.upload(upload_excel, inputs=[excel_input], outputs=[excel_output_positive, excel_output_negative])
110
 
@@ -131,4 +118,3 @@ with gr.Blocks() as demo:
131
  outputs=[output2])
132
 
133
  demo.launch()
134
-
 
75
  excel_output_positive = gr.Textbox(label="긍정리뷰 10개", lines=10)
76
  excel_output_negative = gr.Textbox(label="부정리뷰 10개", lines=10)
77
 
78
+ # 긍정리뷰 프롬프트 입력
 
 
 
 
 
 
79
  system_message = gr.Textbox(label="긍정 프롬프트", lines=10)
80
 
81
+ # 부정리뷰 프롬프트 입력
82
+ input2 = gr.Textbox(label="부정 프롬프트", lines=10)
83
 
84
  # 출력창 1의 명칭을 '긍정리뷰분석'으로 설정
85
  output1 = gr.Textbox(label="긍정리뷰분석", lines=10)
 
92
  temperature = gr.Slider(label="Temperature", minimum=0.1, maximum=1.0, value=0.75, step=0.05)
93
  top_p = gr.Slider(label="Top P", minimum=0.1, maximum=1.0, value=0.95, step=0.05)
94
 
 
 
 
 
 
 
 
95
  # 엑셀 파일 업로드 후 긍정리뷰 10개와 부정리뷰 10개를 출력
96
  excel_input.upload(upload_excel, inputs=[excel_input], outputs=[excel_output_positive, excel_output_negative])
97
 
 
118
  outputs=[output2])
119
 
120
  demo.launch()