firqaaa commited on
Commit
08dbc66
1 Parent(s): 7518014

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -2
README.md CHANGED
@@ -12,7 +12,22 @@ base_model: unsloth/gemma-2b-bnb-4bit
12
  pipeline_tag: text-generation
13
  ---
14
 
15
- # How to use
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  ```python
18
  # Prompt
@@ -56,7 +71,7 @@ text_streamer = TextStreamer(tokenizer)
56
  _ = model.generate(**inputs, streamer = text_streamer, max_new_tokens = 256)
57
  ```
58
 
59
- # Uploaded model
60
 
61
  - **Developed by:** firqaaa
62
  - **License:** apache-2.0
 
12
  pipeline_tag: text-generation
13
  ---
14
 
15
+ ### Description
16
+
17
+ Gemma is a family of lightweight, state-of-the-art open models from Google,
18
+ built from the same research and technology used to create the Gemini models.
19
+ They are text-to-text, decoder-only large language models, available in English,
20
+ with open weights, pre-trained variants, and instruction-tuned variants. Gemma
21
+ models are well-suited for a variety of text generation tasks, including
22
+ question answering, summarization, and reasoning. Their relatively small size
23
+ makes it possible to deploy them in environments with limited resources such as
24
+ a laptop, desktop or your own cloud infrastructure, democratizing access to
25
+ state of the art AI models and helping foster innovation for everyone.
26
+
27
+ ### Context Length
28
+ Models are trained on a context length of 8192 tokens.
29
+
30
+ ### How to use
31
 
32
  ```python
33
  # Prompt
 
71
  _ = model.generate(**inputs, streamer = text_streamer, max_new_tokens = 256)
72
  ```
73
 
74
+ ### Uploaded model
75
 
76
  - **Developed by:** firqaaa
77
  - **License:** apache-2.0