Update README.md
Browse files
README.md
CHANGED
|
@@ -36,7 +36,7 @@ You can use this model directly with a pipeline for Text2Text generation, as sho
|
|
| 36 |
```python
|
| 37 |
from transformers import pipeline, set_seed
|
| 38 |
|
| 39 |
-
summarizer = pipeline('text2text-generation', model='describeai/gemini')
|
| 40 |
code = "print('hello world!')"
|
| 41 |
|
| 42 |
response = summarizer(code, max_length=100, num_beams=3)
|
|
@@ -52,8 +52,8 @@ Summarized code: The following code is greeting the world.
|
|
| 52 |
|
| 53 |
### Model sizes
|
| 54 |
|
| 55 |
-
Gemini: 770 Million Parameters
|
| 56 |
-
Gemini-Small (this repo): 220 Million Parameters
|
| 57 |
|
| 58 |
|
| 59 |
### Limitations
|
|
|
|
| 36 |
```python
|
| 37 |
from transformers import pipeline, set_seed
|
| 38 |
|
| 39 |
+
summarizer = pipeline('text2text-generation', model='describeai/gemini-small')
|
| 40 |
code = "print('hello world!')"
|
| 41 |
|
| 42 |
response = summarizer(code, max_length=100, num_beams=3)
|
|
|
|
| 52 |
|
| 53 |
### Model sizes
|
| 54 |
|
| 55 |
+
- Gemini: 770 Million Parameters
|
| 56 |
+
- Gemini-Small (this repo): 220 Million Parameters
|
| 57 |
|
| 58 |
|
| 59 |
### Limitations
|