DevHunterAI commited on
Commit
a4bd27d
·
verified ·
1 Parent(s): 60ab975

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -6
README.md CHANGED
@@ -10,15 +10,54 @@ tags:
10
  - mistral
11
  - peft
12
  - lora
13
- - 3B
14
  - hmc
15
  - reasoning
16
  - mathematical-reasoning
 
 
 
 
17
  base_model:
18
  - mistralai/Ministral-3-3B-Base-2512
19
  library_name: transformers
20
  pipeline_tag: text-generation
21
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ---
23
 
24
  # RubiNet
@@ -37,7 +76,7 @@ The goal of RubiNet is to provide sharper dialogue quality, stronger consistency
37
  - **Inference stack**: Transformers + PEFT
38
  - **Tuning style**: RubiNet HMC chat adaptation
39
 
40
- ## Benchmark Snapshot
41
 
42
  The following benchmark scores were reported for the RubiNet setup:
43
 
@@ -93,9 +132,9 @@ print(tokenizer.decode(output[0], skip_special_tokens=True))
93
 
94
  ## Chat Example
95
 
96
- ![RubiNet local chat example](./rubinet_chat_example.png)
97
 
98
- Example local RubiNet chat interface screenshot.
99
 
100
  ## Training / Adaptation Note
101
 
@@ -110,4 +149,4 @@ RubiNet is a fine-tuned conversational adaptation derived from `mistralai/Minist
110
 
111
  ## Repository Notes
112
 
113
- If you publish this repository publicly, keep the model title as **RubiNet** and place extra technical details such as benchmark scores, language coverage, and architecture hints in the tags and description rather than in the title.
 
10
  - mistral
11
  - peft
12
  - lora
 
13
  - hmc
14
  - reasoning
15
  - mathematical-reasoning
16
+ datasets:
17
+ - piqa
18
+ - ai2_arc
19
+ - gsm8k
20
  base_model:
21
  - mistralai/Ministral-3-3B-Base-2512
22
  library_name: transformers
23
  pipeline_tag: text-generation
24
+ model-index:
25
+ - name: RubiNet
26
+ results:
27
+ - task:
28
+ type: text-generation
29
+ name: Text Generation
30
+ dataset:
31
+ type: piqa
32
+ name: PIQA
33
+ split: validation
34
+ metrics:
35
+ - type: accuracy
36
+ name: Accuracy
37
+ value: 71.55
38
+ - task:
39
+ type: text-generation
40
+ name: Text Generation
41
+ dataset:
42
+ type: ai2_arc
43
+ name: ARC-Easy
44
+ config: ARC-Easy
45
+ split: test
46
+ metrics:
47
+ - type: accuracy
48
+ name: Accuracy
49
+ value: 79.82
50
+ - task:
51
+ type: text-generation
52
+ name: Text Generation
53
+ dataset:
54
+ type: gsm8k
55
+ name: GSM8K-100
56
+ split: test
57
+ metrics:
58
+ - type: accuracy
59
+ name: Accuracy
60
+ value: 24.0
61
  ---
62
 
63
  # RubiNet
 
76
  - **Inference stack**: Transformers + PEFT
77
  - **Tuning style**: RubiNet HMC chat adaptation
78
 
79
+ ## Eval Results
80
 
81
  The following benchmark scores were reported for the RubiNet setup:
82
 
 
132
 
133
  ## Chat Example
134
 
135
+ ![RubiNet HMC architecture](./RubiNetHMC.png)
136
 
137
+ RubiNet HMC architecture overview used in the local serving stack.
138
 
139
  ## Training / Adaptation Note
140
 
 
149
 
150
  ## Repository Notes
151
 
152
+ If you publish this repository publicly, keep the model title as **RubiNet** and place extra technical details such as benchmark scores, language coverage, and architecture hints in the tags and description rather than in the title.