Instructions to use MANSTAGE/analysisSelf-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MANSTAGE/analysisSelf-model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MANSTAGE/analysisSelf-model", dtype="auto") - llama-cpp-python
How to use MANSTAGE/analysisSelf-model with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="MANSTAGE/analysisSelf-model", filename="meta-llama-3.1-8b.Q4_K_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use MANSTAGE/analysisSelf-model with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MANSTAGE/analysisSelf-model:Q4_K_M # Run inference directly in the terminal: llama-cli -hf MANSTAGE/analysisSelf-model:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MANSTAGE/analysisSelf-model:Q4_K_M # Run inference directly in the terminal: llama-cli -hf MANSTAGE/analysisSelf-model:Q4_K_M
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 MANSTAGE/analysisSelf-model:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf MANSTAGE/analysisSelf-model:Q4_K_M
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 MANSTAGE/analysisSelf-model:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf MANSTAGE/analysisSelf-model:Q4_K_M
Use Docker
docker model run hf.co/MANSTAGE/analysisSelf-model:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use MANSTAGE/analysisSelf-model with Ollama:
ollama run hf.co/MANSTAGE/analysisSelf-model:Q4_K_M
- Unsloth Studio new
How to use MANSTAGE/analysisSelf-model with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MANSTAGE/analysisSelf-model to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MANSTAGE/analysisSelf-model to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MANSTAGE/analysisSelf-model to start chatting
- Docker Model Runner
How to use MANSTAGE/analysisSelf-model with Docker Model Runner:
docker model run hf.co/MANSTAGE/analysisSelf-model:Q4_K_M
- Lemonade
How to use MANSTAGE/analysisSelf-model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MANSTAGE/analysisSelf-model:Q4_K_M
Run and chat with the model
lemonade run user.analysisSelf-model-Q4_K_M
List all available models
lemonade list
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
adapter_config.json
CHANGED
|
@@ -33,13 +33,13 @@
|
|
| 33 |
"rank_pattern": {},
|
| 34 |
"revision": null,
|
| 35 |
"target_modules": [
|
|
|
|
|
|
|
| 36 |
"gate_proj",
|
|
|
|
| 37 |
"o_proj",
|
| 38 |
-
"v_proj",
|
| 39 |
"k_proj",
|
| 40 |
-
"up_proj"
|
| 41 |
-
"q_proj",
|
| 42 |
-
"down_proj"
|
| 43 |
],
|
| 44 |
"target_parameters": null,
|
| 45 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 33 |
"rank_pattern": {},
|
| 34 |
"revision": null,
|
| 35 |
"target_modules": [
|
| 36 |
+
"down_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
"gate_proj",
|
| 39 |
+
"q_proj",
|
| 40 |
"o_proj",
|
|
|
|
| 41 |
"k_proj",
|
| 42 |
+
"up_proj"
|
|
|
|
|
|
|
| 43 |
],
|
| 44 |
"target_parameters": null,
|
| 45 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 167832240
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d65277c3c7d3972bc1d55352b383280771c3fc097fe5a3fd12c907d371ffc95
|
| 3 |
size 167832240
|