Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,54 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- MCES10-Software/Ricky-Llama-3.2
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Ricky - Llama 3.2 Instruct
|
| 11 |
+
|
| 12 |
+
- Ricky is based on Llama-3.2-1B-Instruct-MLXTuned from MLX Community
|
| 13 |
+
- Fine Tuned on Custom Dataset that will not be open source
|
| 14 |
+
- www.mces10-software.com/rickyai
|
| 15 |
+
- ULTRA FAST RESPONSES LOCALLY ON APPLE SILLICON MACHINES
|
| 16 |
+
- GGUF Available to download soon (1.21GB) q_8_0 Quantised
|
| 17 |
+
|
| 18 |
+
## Website
|
| 19 |
+
- www.mces10-software.com/rickyai is out of date and will be updated ASAP
|
| 20 |
+
|
| 21 |
+
## Agree to the Model T&C
|
| 22 |
+
|
| 23 |
+
- You agree the Apache 2.0 License
|
| 24 |
+
- This is an open source model and people from Meta, MLX, MCES10 Software so don't claim as your own.
|
| 25 |
+
|
| 26 |
+
## Benchmark LM Studio M1 PRO 16 GB RAM
|
| 27 |
+
|
| 28 |
+
### Q: How to use async/await in JavaScript?
|
| 29 |
+
|
| 30 |
+
### A:
|
| 31 |
+
|
| 32 |
+
Using async/await in JavaScript:
|
| 33 |
+
```javascript
|
| 34 |
+
async function example() {
|
| 35 |
+
return "Hello";
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
example().then((res) => console.log(res));
|
| 39 |
+
```
|
| 40 |
+
Note that `example()` returns a promise and can be used with `async` keywords.
|
| 41 |
+
```javascript
|
| 42 |
+
async function example() {
|
| 43 |
+
await new Promise(resolve => setTimeout(resolve, 1000));
|
| 44 |
+
return "Hello";
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
example().then((res) => console.log(res));
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
### Info:
|
| 51 |
+
|
| 52 |
+
- 91.47 tok/sec
|
| 53 |
+
- 92 tokens
|
| 54 |
+
- 0.13s to first token
|