Text Generation
Transformers
GGUF
English
Portuguese
hf-inference
education
logic
math
low-resource
open-source
causal-lm
lxcorp
TensorBlock
GGUF
conversational
Instructions to use tensorblock/lxcorp_lambda-1v-1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/lxcorp_lambda-1v-1B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/lxcorp_lambda-1v-1B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/lxcorp_lambda-1v-1B-GGUF", filename="lambda-1v-1B-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
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 tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
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 tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/lxcorp_lambda-1v-1B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/lxcorp_lambda-1v-1B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
- SGLang
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/lxcorp_lambda-1v-1B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/lxcorp_lambda-1v-1B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/lxcorp_lambda-1v-1B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/lxcorp_lambda-1v-1B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with Ollama:
ollama run hf.co/tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF 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 tensorblock/lxcorp_lambda-1v-1B-GGUF 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 tensorblock/lxcorp_lambda-1v-1B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/lxcorp_lambda-1v-1B-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
- Lemonade
How to use tensorblock/lxcorp_lambda-1v-1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/lxcorp_lambda-1v-1B-GGUF:Q2_K
Run and chat with the model
lemonade run user.lxcorp_lambda-1v-1B-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- lambda-1v-1B-Q3_K_L.gguf +0 -3
- lambda-1v-1B-Q3_K_S.gguf +0 -3
- lambda-1v-1B-Q4_0.gguf +0 -3
- lambda-1v-1B-Q4_K_M.gguf +0 -3
- lambda-1v-1B-Q4_K_S.gguf +0 -3
- lambda-1v-1B-Q5_0.gguf +0 -3
- lambda-1v-1B-Q5_K_M.gguf +0 -3
- lambda-1v-1B-Q5_K_S.gguf +0 -3
- lambda-1v-1B-Q6_K.gguf +0 -3
- lambda-1v-1B-Q8_0.gguf +0 -3
lambda-1v-1B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5acfe648fbf88287deef6191887a617c7da66be6c305158b0691c8ce9ff429b7
|
| 3 |
-
size 591528000
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:972296be2f2ec7d0691a34405b2e636e5e187304540052b454e298f813ec8383
|
| 3 |
-
size 499343424
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:47b859c132e91c3daae6aea27d8fd882deee88071e0eca33f43185576b76ab58
|
| 3 |
-
size 636727360
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:242f91b168c49e1abfb51f4f0d359405ccb4b942373c133c5a362e8d2a2b975d
|
| 3 |
-
size 667816000
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:eeeb3d6e1951a838fade2635f6b12e324e72e8bb0be06d27453c461ddbfe5630
|
| 3 |
-
size 639873088
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a5c748c941c28b5934bc386304cd48975e92d01f9e68e653ef5108f8a1dfddb7
|
| 3 |
-
size 766029888
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a4ebca18dac23c97c217752c4010f22d54961ffb21d11efb896a98e75489b3c3
|
| 3 |
-
size 782045248
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3c28282ae04cca8f41f08e74fcd4c84f8010ba587d4080b18091d578b60a0a3d
|
| 3 |
-
size 766029888
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:679ac82c484d90de258aeba2e68dce0ba66ec66b70598216588fefd8ae733b39
|
| 3 |
-
size 903413824
|
|
|
|
|
|
|
|
|
|
|
|
lambda-1v-1B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9f13233d33e78865d72f79da89ca43552e1f8813385a418562647fbc41c9264c
|
| 3 |
-
size 1169809472
|
|
|
|
|
|
|
|
|
|
|
|