
local-llm
A comprehensive guide for building and configuring a high-end local machine to run state-of-the-art LLMs, with detailed hardware choices, BIOS tuning, and Docker-based model serving.
它提出了一种新颖的“先融合后重建”范式用于多模态工业异常检测,在两个标准基准上取得了强结果。
[Information Fusion 2026] Fuse Before Reconstruct: A Novel Reconstruction Paradigm for Multimodal Industrial Anomaly Detection
by Zhi Li, Hanyu Wang, Qiyu Chen, Fei Shen, Zhengtao Zhang.
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e . --no-deps
pointnet2_ops contains CUDA extensions and must match the active PyTorch and
CUDA versions.
FBR uses the same pretrained feature extractors as M3DM and CFM:
| Modality | Backbone | Pretraining | Weights |
|---|---|---|---|
| RGB | DINO ViT-B/8 | DINO on ImageNet | Automatically downloaded by timm |
| 3D | Point Transformer | Point-MAE on ShapeNet | Download |
The Point-MAE checkpoint above is distributed by M3DM. Download it and place it at:
checkpoints/feature_extractors/pointmae_pretrain.pth
Download MVTec 3D-AD and Eyecandies from their official websites:
datasets/
├── mvtec3d/
├── eyecandies/
└── eyecandies_preprocessed/
Preprocess MVTec 3D-AD:
python tools/preprocess_mvtec.py datasets/mvtec3d
This operation modifies the TIFF point-cloud files in place. Keep an untouched copy of the dataset.
Preprocess Eyecandies:
python tools/preprocess_eyecandies.py \
--dataset_path datasets/eyecandies \
--target_dir datasets/eyecandies_preprocessed
The target directory must not already exist.
Dataset-specific files extend configs/base.yaml. The base configuration
contains the model dimensions, backbone settings, 300-epoch training schedule,
batch size 2, learning rate 1e-3, training seed 115, and evaluation seed 42.
Paths and experimental parameters can be changed in YAML or overridden from the command line:
fbr train \
--config configs/mvtec.yaml \
--classes bagel cookie \
--epochs 300 \
--bat
[Information Fusion 2026] Official implementation of "Fuse Before Reconstruct: A Novel Reconstruction Paradigm for Multimodal Industrial Anomaly Detection"
根据分类、Topic 和编程语言匹配的相似项目。

A comprehensive guide for building and configuring a high-end local machine to run state-of-the-art LLMs, with detailed hardware choices, BIOS tuning, and Docker-based model serving.
A 28.9 million parameter language model runs on an $8 ESP32-S3 microcontroller entirely on-device, generating simple stories at about 9.5 tokens per second.
Deltafin is a research project that runs the 2.8-trillion-parameter Mixture-of-Experts model Kimi K3 on a single Apple Silicon Mac (e.g., M1 Max with 64 GB) at about 16 seconds per token, using exact, reproducible inference with local or streaming expert loading.