ai/ai
ai/ai
1
0
This commit is contained in:
syui 2025-03-23 06:42:34 +09:00
parent 9b45564498
commit b9419f8c8d
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -13,8 +13,8 @@ the aim is to incorporate it into `aibot` and `aios`.
## model ## model
1. gemma3:b12 1. gemma3:12b
2. deepseek-r1:b12 2. deepseek-r1:12b
```json ```json
{ {
@ -26,8 +26,8 @@ the aim is to incorporate it into `aibot` and `aios`.
```sh ```sh
$ brew install ollama $ brew install ollama
$ brew service restart ollama $ brew service restart ollama
$ ollama pull gemma3:14b $ ollama pull gemma3:12b
$ ollama run gemma3:14b "hello" $ ollama run gemma3:12b "hello"
``` ```
## n8n ## n8n
@ -65,7 +65,7 @@ finetuning
$ conda create -n finetuning python=3.11 $ conda create -n finetuning python=3.11
$ conda activate finetuning $ conda activate finetuning
$ pip install mlx-lm #apple silicon $ pip install mlx-lm #apple silicon
$ ollama run llama3.2 $ ollama run llama3.2:1b
$ echo "{ \"model\": \"https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct\", \"data\": \"https://github.com/ml-explore/mlx-examples/tree/main/lora/data\" }"|jq . $ echo "{ \"model\": \"https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct\", \"data\": \"https://github.com/ml-explore/mlx-examples/tree/main/lora/data\" }"|jq .
$ model=meta-llama/Llama-3.2-1B-Instruct $ model=meta-llama/Llama-3.2-1B-Instruct
$ data=ml-explore/mlx-examples/lora/data $ data=ml-explore/mlx-examples/lora/data