Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pipeline_tag: text-generation
|
3 |
+
inference: true
|
4 |
+
widget:
|
5 |
+
- text: 'Hello!'
|
6 |
+
example_title: Hello world
|
7 |
+
group: Python
|
8 |
+
library_name: transformers
|
9 |
+
---
|
10 |
+
|
11 |
+
# yujiepan/llama-2-tiny-3layers-random
|
12 |
+
|
13 |
+
This model is **randomly initialized**, using the config from [meta-llama/Llama-2-7b-chat-hf](https://huggingface.co/yujiepan/llama-2-tiny-3layers-random/blob/main/config.json) but with the following modifications:
|
14 |
+
|
15 |
+
```json
|
16 |
+
{
|
17 |
+
"hidden_size": 8,
|
18 |
+
"intermediate_size": 32,
|
19 |
+
"num_attention_heads": 2,
|
20 |
+
"num_hidden_layers": 3,
|
21 |
+
"num_key_value_heads": 2,
|
22 |
+
}
|
23 |
+
|
24 |
+
```
|