Updating model files
Browse files
README.md
CHANGED
@@ -9,6 +9,17 @@ library_name: transformers
|
|
9 |
pipeline_tag: text-generation
|
10 |
license: other
|
11 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
# Wizard Mega 13B GPTQ
|
14 |
|
@@ -56,6 +67,17 @@ It was created without `--act-order` to ensure compatibility with all UIs out th
|
|
56 |
```
|
57 |
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
# Original Wizard Mega 13B model card
|
60 |
|
61 |
Wizard Mega is a Llama 13B model fine-tuned on the [ShareGPT](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered), [WizardLM](https://huggingface.co/datasets/ehartford/WizardLM_alpaca_evol_instruct_70k_unfiltered), and [Wizard-Vicuna](https://huggingface.co/datasets/ehartford/wizard_vicuna_70k_unfiltered) datasets. These particular datasets have all been filtered to remove responses where the model responds with "As an AI language model...", etc or when the model refuses to respond.
|
@@ -73,7 +95,7 @@ Wizard Mega was built with [Axolotl](https://github.com/OpenAccess-AI-Collective
|
|
73 |
````
|
74 |
### Instruction: write Python code that returns the first n numbers of the Fibonacci sequence using memoization.
|
75 |
|
76 |
-
### Assistant:
|
77 |
```python
|
78 |
def fib(n):
|
79 |
if n < 2:
|
@@ -86,17 +108,17 @@ def fib(n):
|
|
86 |
cache[i] = a
|
87 |
a, b = b, a + b
|
88 |
return cache[n]
|
89 |
-
|
90 |
def first_n(n):
|
91 |
fib_list = [fib(i) for i in range(n+1)]
|
92 |
return fib_list[:n]
|
93 |
```
|
94 |
-
This function uses memoization to store the values of previous Fibonacci numbers in a cache. This way, if the same number is requested again, it can be returned immediately without recalculating it.
|
95 |
The `first_n` function takes an integer `n` as input, and calculates the first n numbers of the Fibonacci sequence using memoization. It returns a list of those numbers.
|
96 |
````
|
97 |
|
98 |
```
|
99 |
-
### Instruction: Finish the joke, a mechanic and a car salesman walk into a bar...
|
100 |
|
101 |
### Assistant: ...and the bartender says "Hey guys, what can I get for you?" The mechanic replies, "I'll have a beer, but make it a quick one. I have to fix this guy's car before he finds out I
|
102 |
fiddled with his brakes." The salesman quips, "And I'll have a martini, shaken not stirred. After all, I have to sell this guy a car that doesn't break down on him within the first year of ownership."
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
license: other
|
11 |
---
|
12 |
+
<div style="width: 100%;">
|
13 |
+
<img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
14 |
+
</div>
|
15 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
16 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
17 |
+
<p><a href="https://discord.gg/UBgz4VXf">Chat & support: my new Discord server</a></p>
|
18 |
+
</div>
|
19 |
+
<div style="display: flex; flex-direction: column; align-items: flex-end;">
|
20 |
+
<p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? Patreon coming soon!</a></p>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
|
24 |
# Wizard Mega 13B GPTQ
|
25 |
|
|
|
67 |
```
|
68 |
|
69 |
|
70 |
+
## Want to support my work?
|
71 |
+
|
72 |
+
I've had a lot of people ask if they can contribute. I love providing models and helping people, but it is starting to rack up pretty big cloud computing bills.
|
73 |
+
|
74 |
+
So if you're able and willing to contribute, it'd be most gratefully received and will help me to keep providing models, and work on various AI projects.
|
75 |
+
|
76 |
+
Donaters will get priority support on any and all AI/LLM/model questions, and I'll gladly quantise any model you'd like to try.
|
77 |
+
|
78 |
+
* Patreon: coming soon! (just awaiting approval)
|
79 |
+
* Ko-Fi: https://ko-fi.com/TheBlokeAI
|
80 |
+
* Discord: https://discord.gg/UBgz4VXf
|
81 |
# Original Wizard Mega 13B model card
|
82 |
|
83 |
Wizard Mega is a Llama 13B model fine-tuned on the [ShareGPT](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered), [WizardLM](https://huggingface.co/datasets/ehartford/WizardLM_alpaca_evol_instruct_70k_unfiltered), and [Wizard-Vicuna](https://huggingface.co/datasets/ehartford/wizard_vicuna_70k_unfiltered) datasets. These particular datasets have all been filtered to remove responses where the model responds with "As an AI language model...", etc or when the model refuses to respond.
|
|
|
95 |
````
|
96 |
### Instruction: write Python code that returns the first n numbers of the Fibonacci sequence using memoization.
|
97 |
|
98 |
+
### Assistant:
|
99 |
```python
|
100 |
def fib(n):
|
101 |
if n < 2:
|
|
|
108 |
cache[i] = a
|
109 |
a, b = b, a + b
|
110 |
return cache[n]
|
111 |
+
|
112 |
def first_n(n):
|
113 |
fib_list = [fib(i) for i in range(n+1)]
|
114 |
return fib_list[:n]
|
115 |
```
|
116 |
+
This function uses memoization to store the values of previous Fibonacci numbers in a cache. This way, if the same number is requested again, it can be returned immediately without recalculating it.
|
117 |
The `first_n` function takes an integer `n` as input, and calculates the first n numbers of the Fibonacci sequence using memoization. It returns a list of those numbers.
|
118 |
````
|
119 |
|
120 |
```
|
121 |
+
### Instruction: Finish the joke, a mechanic and a car salesman walk into a bar...
|
122 |
|
123 |
### Assistant: ...and the bartender says "Hey guys, what can I get for you?" The mechanic replies, "I'll have a beer, but make it a quick one. I have to fix this guy's car before he finds out I
|
124 |
fiddled with his brakes." The salesman quips, "And I'll have a martini, shaken not stirred. After all, I have to sell this guy a car that doesn't break down on him within the first year of ownership."
|