updated to DNN for face detections
This commit is contained in:
+82
-12
@@ -1,4 +1,10 @@
|
||||
# Python
|
||||
# ==========================================================================
|
||||
# ICEYOU .gitignore
|
||||
# Goal: never commit secrets, credentials, biometric/DNN data, captured
|
||||
# media, logs, or local environment artifacts.
|
||||
# ==========================================================================
|
||||
|
||||
# --- Python ---------------------------------------------------------------
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
@@ -20,32 +26,96 @@ wheels/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Virtualenv
|
||||
# --- Virtual environments -------------------------------------------------
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# Config & secrets
|
||||
# ==========================================================================
|
||||
# SECRETS & CONFIGURATION (NEVER COMMIT)
|
||||
# ==========================================================================
|
||||
# Real runtime config (contains email creds + unlock password).
|
||||
config.json
|
||||
*.log
|
||||
config.*.json
|
||||
config.local.json
|
||||
*.local.json
|
||||
# ...but keep the safe placeholder template tracked.
|
||||
!config.example.json
|
||||
!config.sample.json
|
||||
|
||||
# Environment / credential files
|
||||
.env
|
||||
.env.*
|
||||
*.env
|
||||
secrets*
|
||||
*secret*
|
||||
credentials*
|
||||
*credentials*
|
||||
*.pem
|
||||
*.key
|
||||
*.pfx
|
||||
*.p12
|
||||
token*
|
||||
*.token
|
||||
|
||||
# ==========================================================================
|
||||
# BIOMETRIC / FACE-RECOGNITION & DNN MODEL DATA (NEVER COMMIT)
|
||||
# ==========================================================================
|
||||
# Enrolled face images + all per-identity folders
|
||||
faces/
|
||||
faces/**
|
||||
|
||||
# Model + encoding artifacts (DNN / LBPH) wherever they live
|
||||
*.pkl
|
||||
*.dat
|
||||
*.h5
|
||||
*.onnx
|
||||
*.caffemodel
|
||||
*.pb
|
||||
*.tflite
|
||||
*.npy
|
||||
*.npz
|
||||
model.yml
|
||||
trainer*.yml
|
||||
face_encodings.pkl
|
||||
dnn_labels.json
|
||||
labels.json
|
||||
|
||||
# Temp images written during face-unlock verification
|
||||
iceyou_dnn_*.png
|
||||
iceyou_verify_*.png
|
||||
|
||||
# ==========================================================================
|
||||
# CAPTURED MEDIA, LOGS & RUNTIME ARTIFACTS (NEVER COMMIT)
|
||||
# ==========================================================================
|
||||
snapshots/
|
||||
motion_clips/
|
||||
faces/
|
||||
events.log
|
||||
backup
|
||||
backup/
|
||||
*.log
|
||||
events.log
|
||||
iceyou_crash.log
|
||||
|
||||
# IDE
|
||||
# Loose captured media
|
||||
*.avi
|
||||
*.mp4
|
||||
*.mkv
|
||||
*.mov
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.png
|
||||
*.bmp
|
||||
|
||||
# --- IDE / editor ---------------------------------------------------------
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
# --- OS -------------------------------------------------------------------
|
||||
Thumbs.db
|
||||
.DS_Store
|
||||
|
||||
# PyInstaller
|
||||
*.spec
|
||||
build/
|
||||
dist/
|
||||
# --- PyInstaller ----------------------------------------------------------
|
||||
*.spec
|
||||
Reference in New Issue
Block a user