Fix YAML metadata warning in README.md
Browse filesAdd proper YAML frontmatter to README.md to resolve the metadata warning.
Changes:
- Added YAML metadata section with model information
- Included language, license, tags, datasets, and metrics
- Added model-index with performance results
- Specified library_name and pipeline_tag
This resolves the warning: "empty or missing yaml metadata in repo card"
README.md
CHANGED
@@ -1,3 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# OpenLLM Small Extended 7K Model
|
2 |
|
3 |
<!-- Copyright (C) 2024 Louis Chua Bean Chong -->
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license:
|
5 |
+
- gpl-3.0
|
6 |
+
- other
|
7 |
+
tags:
|
8 |
+
- text-generation
|
9 |
+
- language-model
|
10 |
+
- open-source
|
11 |
+
- gpt
|
12 |
+
- transformer
|
13 |
+
- causal-lm
|
14 |
+
datasets:
|
15 |
+
- squad
|
16 |
+
metrics:
|
17 |
+
- perplexity
|
18 |
+
- loss
|
19 |
+
library_name: transformers
|
20 |
+
pipeline_tag: text-generation
|
21 |
+
model-index:
|
22 |
+
- name: OpenLLM Small Extended 7K
|
23 |
+
results:
|
24 |
+
- task:
|
25 |
+
type: text-generation
|
26 |
+
dataset:
|
27 |
+
type: squad
|
28 |
+
name: Wikipedia passages from SQuAD
|
29 |
+
metrics:
|
30 |
+
- type: loss
|
31 |
+
value: 2.1
|
32 |
+
- type: perplexity
|
33 |
+
value: 8.2
|
34 |
+
---
|
35 |
+
|
36 |
# OpenLLM Small Extended 7K Model
|
37 |
|
38 |
<!-- Copyright (C) 2024 Louis Chua Bean Chong -->
|