Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
# =============================================================================

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

*$py.class

# C extensions
Expand Down Expand Up @@ -361,3 +360,9 @@ images/
poetry publish --build --username __toke.txt
fix_flake.py
apps/api/fastapi_app_np.py


*__pycache__/*
*.pyc
production_package/*
tests/__pycache__/*
6 changes: 3 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ norm_std: [0.229, 0.224, 0.225] # Standard deviation for normalization
# Model / training
# =========================
backbone: "resnet18" # Backbone CNN architecture (resnet18 | wide_resnet50)
algorithm: "padim" # Algorithm to use: padim or patchcore
algorithm: "patchcore" # Algorithm to use: padim or patchcore
coreset_ratio: 0.02 # Ultra-light PatchCore memory fraction
max_memory_patches: 2048 # Hard memory-bank cap for low latency
patch_grid: 14 # Pool feature maps to at most 14x14 patches
Expand Down Expand Up @@ -51,8 +51,8 @@ viz_color: "128,0,128" # RGB color for visualization overlays
# =========================
img_path: "D:/01-DATA/test" # Path to test images for inference
thresh: null # Legacy fallback; prefer algorithm-specific thresholds
thresh_padim: null # PaDiM score threshold; null lets eval auto-select
thresh_patchcore: null # PatchCore score threshold; null lets eval auto-select
thresh_padim: 13.0 # PaDiM score threshold; null lets eval auto-select
thresh_patchcore: 0.25 # PatchCore score threshold; null lets eval auto-select
num_workers: 1 # Number of workers for dataloader
pin_memory: false # Use pinned memory for faster GPU transfers
overwrite: false # Overwrite existing run directory without auto-incrementing
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "anomavision"
version = "3.5.0"
version = "3.5.1"
description = "Advanced Anomaly Detection Environment - Production Ready"
authors = [{ name = "Deep Knowledge", email = "Deepp.Knowledge@gmail.com" }]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading