|
--- |
|
license: apache-2.0 |
|
language: |
|
- en |
|
base_model: |
|
- MCES10-Software/Ricky-Llama-3.2 |
|
pipeline_tag: text-generation |
|
--- |
|
|
|
# Ricky - Llama 3.2 Instruct |
|
|
|
- Ricky is based on Llama-3.2-1B-Instruct-MLXTuned from MLX Community |
|
- Fine Tuned on Custom Dataset that will not be open source |
|
- www.mces10-software.com/rickyai |
|
- ULTRA FAST RESPONSES LOCALLY ON APPLE SILLICON MACHINES |
|
- GGUF Available to download soon (1.21GB) q_8_0 Quantised |
|
|
|
## Website |
|
- www.mces10-software.com/rickyai |
|
|
|
## Agree to the Model T&C |
|
|
|
- You agree the Apache 2.0 License |
|
- This is an open source model and people from Meta, MLX, MCES10 Software so don't claim as your own. |
|
|
|
## Benchmark LM Studio M1 PRO 16 GB RAM |
|
|
|
### Q: How to use async/await in JavaScript? |
|
|
|
### A: |
|
|
|
Using async/await in JavaScript: |
|
```javascript |
|
async function example() { |
|
return "Hello"; |
|
} |
|
|
|
example().then((res) => console.log(res)); |
|
``` |
|
Note that `example()` returns a promise and can be used with `async` keywords. |
|
```javascript |
|
async function example() { |
|
await new Promise(resolve => setTimeout(resolve, 1000)); |
|
return "Hello"; |
|
} |
|
|
|
example().then((res) => console.log(res)); |
|
``` |
|
|
|
### Info: |
|
|
|
- 91.47 tok/sec |
|
- 92 tokens |
|
- 0.13s to first token |