Trouter-Library commited on
Commit
1f2c453
·
verified ·
1 Parent(s): 19cd7ab

Create model-index.yaml

Browse files
Files changed (1) hide show
  1. model-index.yaml +84 -0
model-index.yaml ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ library_name: transformers
6
+ tags:
7
+ - text-generation
8
+ - conversational
9
+ - llama-2
10
+ - causal-lm
11
+ - autotrain_compatible
12
+ pipeline_tag: text-generation
13
+ base_model: meta-llama/Llama-2-7b-hf
14
+
15
+ # Model metrics that show in the card
16
+ model-index:
17
+ - name: Helion-V1.5
18
+ results:
19
+ - task:
20
+ type: text-generation
21
+ name: Text Generation
22
+ dataset:
23
+ name: MT-Bench
24
+ type: mt-bench
25
+ config: default
26
+ split: test
27
+ metrics:
28
+ - type: score
29
+ value: 7.2
30
+ name: MT-Bench
31
+ verified: false
32
+ - task:
33
+ type: text-generation
34
+ name: Instruction Following
35
+ dataset:
36
+ name: AlpacaEval
37
+ type: alpaca_eval
38
+ metrics:
39
+ - type: win_rate
40
+ value: 78.5
41
+ name: Win Rate
42
+ - type: avg_length
43
+ value: 1847
44
+ name: Average Length
45
+
46
+ # Display configuration
47
+ extra_gated_prompt: false
48
+
49
+ # Size and architecture info (shown in model card header)
50
+ model_size: 7B
51
+ quantization:
52
+ - bitsandbytes
53
+ - gguf
54
+ context_length: 4096
55
+ architecture: llama-2
56
+
57
+ # Widget examples for the model card
58
+ widget:
59
+ - text: "Write a Python function to calculate the Fibonacci sequence"
60
+ example_title: "Code Generation"
61
+ parameters:
62
+ max_new_tokens: 256
63
+ temperature: 0.7
64
+ top_p: 0.9
65
+ - text: "Explain the concept of neural networks in simple terms"
66
+ example_title: "Technical Explanation"
67
+ parameters:
68
+ max_new_tokens: 300
69
+ temperature: 0.7
70
+ - text: "Write a haiku about artificial intelligence"
71
+ example_title: "Creative Writing"
72
+ parameters:
73
+ max_new_tokens: 100
74
+ temperature: 0.9
75
+
76
+ # Stats that appear in the header
77
+ datasets:
78
+ - custom
79
+ inference:
80
+ parameters:
81
+ temperature: 0.7
82
+ top_p: 0.9
83
+ max_new_tokens: 512
84
+ repetition_penalty: 1.1