Instructions to use kazutab/mindmap-studio-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use kazutab/mindmap-studio-model with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf kazutab/mindmap-studio-model # Run inference directly in the terminal: llama cli -hf kazutab/mindmap-studio-model
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kazutab/mindmap-studio-model # Run inference directly in the terminal: llama cli -hf kazutab/mindmap-studio-model
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf kazutab/mindmap-studio-model # Run inference directly in the terminal: ./llama-cli -hf kazutab/mindmap-studio-model
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf kazutab/mindmap-studio-model # Run inference directly in the terminal: ./build/bin/llama-cli -hf kazutab/mindmap-studio-model
Use Docker
docker model run hf.co/kazutab/mindmap-studio-model
- LM Studio
- Jan
- Ollama
How to use kazutab/mindmap-studio-model with Ollama:
ollama run hf.co/kazutab/mindmap-studio-model
- Unsloth Desktop
- Pi
How to use kazutab/mindmap-studio-model with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kazutab/mindmap-studio-model
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "kazutab/mindmap-studio-model" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use kazutab/mindmap-studio-model with Docker Model Runner:
docker model run hf.co/kazutab/mindmap-studio-model
- Lemonade
How to use kazutab/mindmap-studio-model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kazutab/mindmap-studio-model
Run and chat with the model
lemonade run user.mindmap-studio-model-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use kazutab/mindmap-studio-model with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kazutab/mindmap-studio-model
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default kazutab/mindmap-studio-model
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use kazutab/mindmap-studio-model with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kazutab/mindmap-studio-model
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "kazutab/mindmap-studio-model" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +20 -0
- backend/llama.cpp/models/ggml-vocab-aquila.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-baichuan.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-bert-bge.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-command-r.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-deepseek-coder.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-deepseek-llm.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-falcon.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-gemma-4.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-gpt-2.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-gpt-neox.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-llama-bpe.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-llama-spm.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-mpt.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-nomic-bert-moe.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-phi-3.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-qwen2.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-qwen35.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-refact.gguf +3 -0
- backend/llama.cpp/models/ggml-vocab-starcoder.gguf +3 -0
- backend/production_mindmap_model.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,23 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
backend/llama.cpp/models/ggml-vocab-aquila.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
backend/llama.cpp/models/ggml-vocab-baichuan.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
backend/llama.cpp/models/ggml-vocab-bert-bge.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
backend/llama.cpp/models/ggml-vocab-command-r.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
backend/llama.cpp/models/ggml-vocab-deepseek-coder.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
backend/llama.cpp/models/ggml-vocab-deepseek-llm.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
backend/llama.cpp/models/ggml-vocab-falcon.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
backend/llama.cpp/models/ggml-vocab-gemma-4.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
backend/llama.cpp/models/ggml-vocab-gpt-2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
backend/llama.cpp/models/ggml-vocab-gpt-neox.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
backend/llama.cpp/models/ggml-vocab-llama-bpe.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
backend/llama.cpp/models/ggml-vocab-llama-spm.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
backend/llama.cpp/models/ggml-vocab-mpt.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
backend/llama.cpp/models/ggml-vocab-nomic-bert-moe.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
backend/llama.cpp/models/ggml-vocab-phi-3.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
backend/llama.cpp/models/ggml-vocab-qwen2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
backend/llama.cpp/models/ggml-vocab-qwen35.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
backend/llama.cpp/models/ggml-vocab-refact.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
backend/llama.cpp/models/ggml-vocab-starcoder.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
backend/production_mindmap_model.gguf filter=lfs diff=lfs merge=lfs -text
|
backend/llama.cpp/models/ggml-vocab-aquila.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c53c3c516ac67c7ca12977b9690fdea3d2ef13bbaed6378f98191a13ef5ca00
|
| 3 |
+
size 4825676
|
backend/llama.cpp/models/ggml-vocab-baichuan.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f5b955697f3bd3108070b1d5936c7eb9fc542b81c6932e59abddec75bca1963
|
| 3 |
+
size 1340998
|
backend/llama.cpp/models/ggml-vocab-bert-bge.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbcbe22278fb302694d5f4a41bfe48c5f90e8e3554eab1c0435387dff654a854
|
| 3 |
+
size 627549
|
backend/llama.cpp/models/ggml-vocab-command-r.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2f8cfea952ef7c391a6d92a1c309d0bd32e36384d9b9230569a7425732f27d9
|
| 3 |
+
size 10874545
|
backend/llama.cpp/models/ggml-vocab-deepseek-coder.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91cb1379f2e33af1c4866b194622b7a0e12e8f0c9dba7ba2f10d55978730bec1
|
| 3 |
+
size 1156067
|
backend/llama.cpp/models/ggml-vocab-deepseek-llm.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:867f77537b54565f0d81d508c04edc41aa1d4ffc1a92745f225b4c1b02755f76
|
| 3 |
+
size 3970167
|
backend/llama.cpp/models/ggml-vocab-falcon.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f0bf8b0733680398b72e652e90f260f43782f326e75545fc0e49611a5ba35ad
|
| 3 |
+
size 2287728
|
backend/llama.cpp/models/ggml-vocab-gemma-4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58b1ba0b57f3b4d7c468ba4ffd91ad85190346a3d7ad7e71d1cabaae8a14bb65
|
| 3 |
+
size 15776467
|
backend/llama.cpp/models/ggml-vocab-gpt-2.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cedc56ca6e2e89f63e781696d1fd76b4b1d49e6720dee86463e915f6e90016ac
|
| 3 |
+
size 1766807
|
backend/llama.cpp/models/ggml-vocab-gpt-neox.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae593a7f9b8bb174ed4f5019e41530463e4dac7aa06e42dee8aa650d2bdac53d
|
| 3 |
+
size 1771431
|
backend/llama.cpp/models/ggml-vocab-llama-bpe.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97272e430d53bc7688f52d5e0ad8ea8f163ede9f1bbd1694feaa504797d5d96e
|
| 3 |
+
size 7818140
|
backend/llama.cpp/models/ggml-vocab-llama-spm.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16c3724582d59aa8bf84711894e833f916ee46a31d80e21312759c48bf8d0e69
|
| 3 |
+
size 723869
|
backend/llama.cpp/models/ggml-vocab-mpt.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59dc382612866d1fc6c11ea531318d327598f3412d9c8f8600607cdf3030898f
|
| 3 |
+
size 1771393
|
backend/llama.cpp/models/ggml-vocab-nomic-bert-moe.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90a6746926454784a98389ad36a36d89bc9cfc81db9cb0f33c941bcc959fe5f9
|
| 3 |
+
size 6821877
|
backend/llama.cpp/models/ggml-vocab-phi-3.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:967d7190d11c4842eab697079d98d56c2116e10eb617be355a2733bfc132e326
|
| 3 |
+
size 726019
|
backend/llama.cpp/models/ggml-vocab-qwen2.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44c2f46b715f585c6ab513970e8a006bfa5badd6108560054921cf598d154d8c
|
| 3 |
+
size 5928681
|
backend/llama.cpp/models/ggml-vocab-qwen35.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63ed952ff338996cf0bdf24a7b10015124273f75c6dc9bb427356aa3f67ec62c
|
| 3 |
+
size 5928682
|
backend/llama.cpp/models/ggml-vocab-refact.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac3ceda902fed91ccf74312b305d9b86c37e4f8e35fa9cc6ef3ce34fca7d4678
|
| 3 |
+
size 1720710
|
backend/llama.cpp/models/ggml-vocab-starcoder.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fedb892b4e1bd3c1f2fcdae356440b14fb458f4264d586e5c987ed93df4e174d
|
| 3 |
+
size 1719346
|
backend/production_mindmap_model.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b1ff27465c2101ae19462809d7255018d6cc10fb5bb40e9f4706221776147a2
|
| 3 |
+
size 3285475680
|