- 21
- 8
- NAS
- DS1821+ | DSM 7.3.2-86009 Update 1 / DS1812+ | DSM 6.2.4-25556 Update 8
- Operating system
- macOS
- Windows
- Mobile operating system
- Android
- iOS
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Looks very good, thanks for sharing.Im having this bracket printed for the T400, I'll send image once I have it done.
T400 best 3D printing models・1 free models to download・Cults
Discover 3D models for 3D printing related to T400. Download your favorite STL files and make them with your 3D printer. Have a good time!cults3d.com
On another note, any updates to the latest version of DSM with any issues?
This statement is required in compose.yml to utilize integrated gpu present in some intel cpu's like intel celeron J4125 (popular cpu used in numerous synology units like ds920+, etc.).
#!/bin/bash
# ==========================================================
# --- Simply enter your preferred details here. ---
# ==========================================================
DEVELOPER="bartowski"
REPO_NAME="gemma-2-2b-it-abliterated-GGUF"
FILE_NAME="gemma-2-2b-it-abliterated-Q4_k_m.gguf"
TARGET_DIR="gemma-2-2b-it-abliterated"
# ==========================================================
# --- AUTOMATIC HIGH-SPEED INJECTOR (KEEP HANDS OFF) ---
# ==========================================================
# Create the target directory and switch into it.
mkdir -p "$TARGET_DIR"
cd "$TARGET_DIR" || exit 1
echo "=========================================================="
echo "??? ACTIVATE UNIVERSAL GGUF INJECTOR ON DSM"
echo "Entwickler: $DEVELOPER"
echo "Repository: $REPO_NAME"
echo "Lade Datei: $FILE_NAME"
echo "Zielordner: $(pwd)"
echo "=========================================================="
# The rock-solid formula that I just verified live!
DOWNLOAD_URL="https://huggingface.co/${DEVELOPER}/${REPO_NAME}/resolve/main/${FILE_NAME}"
echo "Signal to Hugging Face is green"
The rock-solid formula that I just verified live!..."
echo "URL: $DOWNLOAD_URL"
echo "----------------------------------------------------------"
# The foolproof cURL command with automatic resumption after interruption
curl -L -C - -o "$FILE_NAME" "$DOWNLOAD_URL"
echo ""
echo "=========================================================="
echo "?? Finish line reached! File is on the NAS, error-free...."
echo "=========================================================="
FROM /models/gemma-2-2b-it-abliterated/gemma-2-2b-it-abliterated-Q8_0.gguf
TEMPLATE "{{ if .System }}<start_of_turn>system\n{{ .System }}<end_of_turn>\n{{ end }}{{ if .Prompt }}<start_of_turn>user\n{{ .Prompt }}<end_of_turn>\n{{ end }}<start_of_turn>model\n{{ .Response }}<end_of_turn>\n"
# We are keeping the context set to the stable 1024 so that Ollama doesn't block.
PARAMETER num_ctx 1024
# NOW, TURNING UP THE BOOST:
# We’re increasing the batch size for prompt processing from 512 to 1024!
# This loads more tokens into the CUDA cores simultaneously and fills the vRAM with pure performance!
PARAMETER num_batch 1024
version: "3.8"
services:
# --- BACKEND 1: LOCALAI (with the correct CUDA-12 identifier) ---
localai:
container_name: localai_t400
image: localai/localai:latest-gpu-nvidia-cuda-12
restart: always
ports:
- "8080:8080"
environment:
- MODELS_PATH=/models
- DEBUG=true
volumes:
- /volume1/docker/localai/models:/models
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
# --- BACKEND 2: OLLAMA ---
ollama:
container_name: ollama
image: ollama/ollama:latest
restart: always
ports:
- "11434:11434"
# INSTALL THE TURBO-BOOST HERE:
environment:
- OLLAMA_NUM_PARALLEL=4
volumes:
- /volume1/docker/ollama:/root/.ollama
# Here, Ollama accesses the same folder!
- /volume1/docker/localai/models:/models
# Here is the direct link to a text Maildir:
# - /volume1/docker/localai/Maildir:/mails
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
open-webui:
container_name: open-webui
image: ghcr.io/open-webui/open-webui:main
restart: always
ports:
- "3000:8080"
environment:
- OLLAMA_BASE_URL=http://ollama:11434
volumes:
- /volume1/docker/open-webui:/app/backend/data
We use essential cookies to make this site work, and optional cookies to enhance your experience.