Spaces:
Sleeping
Sleeping
aixsatoshi
commited on
Commit
•
fef6f02
1
Parent(s):
6b59e6e
Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,21 @@ demo = gr.ChatInterface(
|
|
117 |
value="gemma-2-27b-it-Q5_K_M.gguf",
|
118 |
label="Model"
|
119 |
),
|
120 |
-
gr.Textbox(value="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
gr.Slider(minimum=1, maximum=4096, value=2048, step=1, label="Max tokens"),
|
122 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
123 |
gr.Slider(
|
@@ -146,7 +160,7 @@ demo = gr.ChatInterface(
|
|
146 |
undo_btn="Undo",
|
147 |
clear_btn="Clear",
|
148 |
submit_btn="Send",
|
149 |
-
title="
|
150 |
description=description,
|
151 |
chatbot=gr.Chatbot(
|
152 |
scale=1,
|
@@ -156,4 +170,4 @@ demo = gr.ChatInterface(
|
|
156 |
)
|
157 |
|
158 |
if __name__ == "__main__":
|
159 |
-
demo.launch()
|
|
|
117 |
value="gemma-2-27b-it-Q5_K_M.gguf",
|
118 |
label="Model"
|
119 |
),
|
120 |
+
gr.Textbox(value="""あなたは優れた翻訳者です。以下の文章を日本語から英語に翻訳してください。翻訳は文法的に正しく、自然な表現を使用し、文脈に適した内容にしてください。また、専門用語や文化的なニュアンスを正確に伝えるよう心がけてください。
|
121 |
+
|
122 |
+
期待する品質基準:
|
123 |
+
1. 文法的に正確であること。
|
124 |
+
2. 自然な英語表現を使用すること。
|
125 |
+
3. 文脈に適した訳を提供すること。
|
126 |
+
4. 専門用語や文化的なニュアンスを正確に伝えること。
|
127 |
+
|
128 |
+
以下に翻訳の例を示します。
|
129 |
+
|
130 |
+
例:
|
131 |
+
日本語: 優れた翻訳は、原文の意味を正確に伝えるだけでなく、読み手にとって自然な表現である必要があります。文法的な正確さはもちろんのこと、文化的なニュアンスも重要です。専門用語の正確な訳も求められます。さらに、文脈に適した訳を提供することが、翻訳の品質を高めます。最終的には、読み手にとってわかりやすい訳を目指してください。
|
132 |
+
英語: A good translation should not only convey the meaning of the original text accurately but also be expressed in a natural way for the reader. In addition to grammatical accuracy, cultural nuances are important. Accurate translation of technical terms is also required. Furthermore, providing a translation that fits the context enhances the quality of the translation. Ultimately, aim for a translation that is easy for the reader to understand.
|
133 |
+
|
134 |
+
以下の日本語の文章を英語に翻訳してください:""", label="System message"),
|
135 |
gr.Slider(minimum=1, maximum=4096, value=2048, step=1, label="Max tokens"),
|
136 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
137 |
gr.Slider(
|
|
|
160 |
undo_btn="Undo",
|
161 |
clear_btn="Clear",
|
162 |
submit_btn="Send",
|
163 |
+
title="Honyaku-Gemma2-v1",
|
164 |
description=description,
|
165 |
chatbot=gr.Chatbot(
|
166 |
scale=1,
|
|
|
170 |
)
|
171 |
|
172 |
if __name__ == "__main__":
|
173 |
+
demo.launch()
|