Views
No views yet
| File | Quantization | Size |
|---|---|---|
| octen-4b-q4_k.gguf | Q4_K | 2349 MB |
| octen-4b-q5_k.gguf | Q5_K | 2782 MB |
| octen-4b-q8_0.gguf | Q8_0 | 4081 MB |
| octen-4b.gguf | F32 | 15348 MB |
1# Download
2huggingface-cli download cstr/octen-4b-GGUF octen-4b-q4_k.gguf --local-dir .
3
4# Run with CrispEmbed
5./crispembed -m octen-4b-q4_k.gguf "Hello world"
6
7# Or with auto-download
8./crispembed -m octen-4b "Hello world"| Property | Value |
|---|---|
| Architecture | Qwen3 |
| Parameters | 4B |
| Embedding Dimension | 2560 |
| Layers | 36 |
| Pooling | last-token |
| Tokenizer | GPT-2 BPE |
| Base Model | Octen/Octen-Embedding-4B |
1# Build CrispEmbed
2git clone https://github.com/CrispStrobe/CrispEmbed
3cd CrispEmbed
4cmake -S . -B build && cmake --build build -j
5
6# Encode
7./build/crispembed -m octen-4b-q4_k.gguf "query text"
8
9# Server mode
10./build/crispembed-server -m octen-4b-q4_k.gguf --port 8080
11curl -X POST http://localhost:8080/v1/embeddings \
12 -d '{"input": ["Hello world"], "model": "octen-4b"}'convert-decoder-embed-to-gguf.pyOcten.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.