You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,10 @@ With multilingual capabilities and advanced configuration options, it ensures pr
26
26
### Learning Process and Acknowledgements
27
27
As a newbie, I created Gemma Template based on what I read and learned from the following sources:
28
28
29
-
- Google Cookbook: [Advanced Prompting Techniques](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Advanced_Prompting_Techniques.ipynb)
30
-
- Google Cookbook: [Finetune_with_LLaMA_Factory](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Finetune_with_LLaMA_Factory.ipynb)
31
-
- Google Cookbook: [Finetuning Gemma for Function Calling](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Finetuning_Gemma_for_Function_Calling.ipynb)
- Google Gemma Cookbook: [Advanced Prompting Techniques](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Advanced_Prompting_Techniques.ipynb)
30
+
- Google Gemma Cookbook: [Finetune_with_LLaMA_Factory](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Finetune_with_LLaMA_Factory.ipynb)
31
+
- Google Gemma Cookbook: [Finetuning Gemma for Function Calling](https://github.com/google-gemini/gemma-cookbook/blob/main/Gemma/Finetuning_Gemma_for_Function_Calling.ipynb)
- Unsloth: [Finetune Llama 3.2, Mistral, Phi-3.5, Qwen 2.5 & Gemma 2-5x faster with 80% less memory!](https://github.com/unslothai/unsloth)
34
34
35
35
@@ -66,7 +66,7 @@ It enhances text readability, aligns with linguistic nuances, and preserves orig
66
66
- Supports advanced response structure format customization.
67
67
- Compatible with other models such as LLaMa.
68
68
- Enhances dynamic prompts using Round-Robin loops.
69
-
- Outputs multiple formats such as Alpaca, GPT, and STF text.
69
+
- Outputs multiple formats such as Text, Alpaca and GPT conversions.
70
70
71
71
**Installation**
72
72
----------------
@@ -125,7 +125,7 @@ print(response)
125
125
126
126
You are a multilingual professional writer.
127
127
128
-
Rewrite the text with a more engaging and creative tone. Use vivid imagery, descriptive language, and a conversational style to captivate the reader.
128
+
Rewrite the text to be more search engine friendly. Incorporate relevant keywords naturally, improve readability, and ensure it aligns with SEO best practices.
129
129
130
130
# Role:
131
131
You are a highly skilled professional content writer, linguistic analyst, and multilingual expert specializing in structured writing and advanced text processing.
@@ -156,7 +156,7 @@ Text Analysis 3: These are common English words, indicating the text is in Engli
156
156
157
157
Example 2: Bigrams (two words)
158
158
technology as => English
159
-
Text Analysis 2: Frequent bigrams in Vietnamese confirm the language context.
159
+
Text Analysis 2: Frequent bigrams in English confirm the language context.
160
160
161
161
Example 3: Trigrams (three words)
162
162
technology as Gemini => English
@@ -167,17 +167,17 @@ The linguistic analysis confirms the text is predominantly in English. Consequen
167
167
168
168
# Response Structure Format:
169
169
You must follow the response structure:
170
-
**Custom Title (Title):** Rewrite the title to make it concise, memorable, and optimized for SEO.
171
-
**Custom Description (Description):** Write description of the article in one or two sentences while focusing on reader benefits and engage curiosity.
172
-
**Custom Article (Article):** Rewrite this content to be SEO-friendly. Include relevant tags, optimize the title and subheadings, and ensure the text flows naturally for search engines and readers.
173
-
**Custom Main Points (Main Points):** Simplify the original key points to make them clearer and more reader-friendly.
174
-
**Custom Categories (Categories):** Assign appropriate categories to the article based text or target audience.
175
-
**Custom Tags (Tags):** Create tags to include relevant keywords. Ensure the tags align with popular search queries.
170
+
**Custom Title (Title):** Rewrite the title to reflect the main keyword and topic.
171
+
**Custom Description (Meta Description):** Rewrite the description with a bold claim or statistic to grab attention.
172
+
**Custom Article (Edit Article):** Reimagine this article with a more engaging and creative tone. Add metaphors, analogies, or storytelling elements to make it more captivating for readers.
173
+
**Custom Main Points (Highlights):** Summarize the main ideas into concise, actionable key points for added context to make them more engaging.
174
+
**Custom Categories (Topics):** Assign appropriate categories to the article based text or target audience.
175
+
**Custom Tags (Keywords):** Focus use tags that reflect the article’s subtopics or themes for better SEO.
176
176
177
177
By adhering to this format, the response will maintain linguistic integrity while enhancing professionalism, structure and alignment with user expectations.
178
178
179
179
# Text:
180
-
Gemma open models are built from _____ same research _____ technology as Gemini models. Gemma 2 comes in 2B, 9B _____ 27B and Gemma 1 comes in 2B and 7B sizes.
180
+
Gemma open models are built from the same research _____ technology as Gemini models. Gemma 2 comes in 2B, 9B and 27B _____ Gemma 1 comes in 2B _____ 7B sizes.
Copy file name to clipboardexpand all lines: gemma_template/constants.py
+12-12
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,17 @@
23
23
24
24
"""
25
25
26
+
USER_TEMPLATE="""{system_template}
27
+
28
+
{prompt_template}
29
+
30
+
{instruction_template}
31
+
{structure_template}
32
+
# Text:
33
+
{document}
34
+
35
+
"""
36
+
26
37
GEMMA_PROMPT_TEMPLATE="""<start_of_turn>user
27
38
28
39
{user_template}<end_of_turn>
@@ -55,7 +66,7 @@
55
66
56
67
Example 2: Bigrams (two words)
57
68
{bigrams}
58
-
Text Analysis 2: Frequent bigrams in Vietnamese confirm the language context.
69
+
Text Analysis 2: Frequent bigrams in {language} confirm the language context.
59
70
60
71
Example 3: Trigrams (three words)
61
72
{trigrams}
@@ -72,17 +83,6 @@
72
83
By adhering to this format, the response will maintain linguistic integrity while enhancing professionalism, structure and alignment with user expectations.
73
84
"""# noqa: E501
74
85
75
-
USER_TEMPLATE="""{system_template}
76
-
77
-
{prompt_template}
78
-
79
-
{instruction_template}
80
-
{structure_template}
81
-
# Text:
82
-
{document}
83
-
84
-
"""
85
-
86
86
VIETNAMESE_INSTRUCTION_TEMPLATE="""# Vai trò:
87
87
Bạn là một biên tập viên nội dung chuyên nghiệp, nhà phân tích ngôn ngữ và chuyên gia đa ngôn ngữ, chuyên về viết có cấu trúc và xử lý văn bản nâng cao.
Text Analysis 2: Frequent bigrams in Vietnamese confirm the language context.
240
+
Text Analysis 2: Frequent bigrams in English confirm the language context.
241
241
242
242
Example 3: Trigrams (three words)
243
243
technology as Gemini => English
@@ -249,16 +249,16 @@ class Template(BaseTemplate):
249
249
# Response Structure Format:
250
250
You must follow the response structure:
251
251
**Custom Title (Title):** Rewrite the title to reflect the main keyword and topic.
252
-
**Custom Description (Description):** Rewrite the description with a bold claim or statistic to grab attention.
253
-
**Custom Article (Article):** Rewrite this content to be SEO-friendly. Include relevant tags, optimize the title and subheadings, and ensure the text flows naturally for search engines and readers.
254
-
**Custom Main Points (Main Points):** Simplify the original key points to make them clearer and more reader-friendly.
255
-
**Custom Categories (Categories):** Assign appropriate categories to the article based text or target audience.
256
-
**Custom Tags (Tags):** Focus use tags that reflect the article’s subtopics or themes for better SEO.
252
+
**Custom Description (Meta Description):** Rewrite the description with a bold claim or statistic to grab attention.
253
+
**Custom Article (Edit Article):** Reimagine this article with a more engaging and creative tone. Add metaphors, analogies, or storytelling elements to make it more captivating for readers.
254
+
**Custom Main Points (Highlights):** Summarize the main ideas into concise, actionable key points for added context to make them more engaging.
255
+
**Custom Categories (Topics):** Assign appropriate categories to the article based text or target audience.
256
+
**Custom Tags (Keywords):** Focus use tags that reflect the article’s subtopics or themes for better SEO.
257
257
258
258
By adhering to this format, the response will maintain linguistic integrity while enhancing professionalism, structure and alignment with user expectations.
259
259
260
260
# Text:
261
-
Gemma open models are _____ from the same research and technology as Gemini models. Gemma 2 comes in 2B, 9B _____ 27B and Gemma 1 comes in 2B _____ 7B sizes.
261
+
Gemma open models are built from the same research _____ technology as Gemini models. Gemma 2 comes in 2B, 9B and 27B _____ Gemma 1 comes in 2B _____ 7B sizes.
0 commit comments