Add metadata in the model card
Browse files
README.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: other
|
| 3 |
-
tasks:
|
| 4 |
- code-generation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
# Model Card for CodeFuse-DeepSeek-33B
|
| 7 |

|
|
@@ -380,5 +387,4 @@ outputs = model.generate(
|
|
| 380 |
)
|
| 381 |
gen_text = tokenizer.batch_decode(outputs[:, input_ids.shape[1]:], skip_special_tokens=True)
|
| 382 |
print(gen_text[0])
|
| 383 |
-
```
|
| 384 |
-
|
|
|
|
| 1 |
---
|
| 2 |
license: other
|
| 3 |
+
tasks:
|
| 4 |
- code-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- zh
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
+
library_name: transformers
|
| 10 |
+
tags:
|
| 11 |
+
- code
|
| 12 |
---
|
| 13 |
# Model Card for CodeFuse-DeepSeek-33B
|
| 14 |

|
|
|
|
| 387 |
)
|
| 388 |
gen_text = tokenizer.batch_decode(outputs[:, input_ids.shape[1]:], skip_special_tokens=True)
|
| 389 |
print(gen_text[0])
|
| 390 |
+
```
|
|
|