Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
## Model Overview
|
| 5 |
Llama 3 is a set of large language models published by Meta. Both pretrained and instruction tuned models are available, and range in size from 7 billion to 70 billion parameters. See the model card below for benchmarks, data sources, and intended use cases.
|
|
@@ -193,4 +202,4 @@ llama_lm = keras_hub.models.Llama3CausalLM.from_preset(
|
|
| 193 |
dtype="bfloat16"
|
| 194 |
)
|
| 195 |
llama_lm.fit(x=x, y=y, sample_weight=sw, batch_size=2)
|
| 196 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
+
license: llama3
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- text-generation-inference
|
| 8 |
+
- text-generation
|
| 9 |
+
- keras
|
| 10 |
+
- text-to-text-generation
|
| 11 |
+
- text-conversation
|
| 12 |
---
|
| 13 |
## Model Overview
|
| 14 |
Llama 3 is a set of large language models published by Meta. Both pretrained and instruction tuned models are available, and range in size from 7 billion to 70 billion parameters. See the model card below for benchmarks, data sources, and intended use cases.
|
|
|
|
| 202 |
dtype="bfloat16"
|
| 203 |
)
|
| 204 |
llama_lm.fit(x=x, y=y, sample_weight=sw, batch_size=2)
|
| 205 |
+
```
|