-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (70 loc) · 1.3 KB
/
Copy path.gitignore
File metadata and controls
83 lines (70 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Android and Gradle artifacts
.gradle/
build/
**/build/
.kotlin/
**/.cxx/
app/.externalNativeBuild/
app/release/
# Android Studio and IntelliJ
.idea/
*.iml
captures/
# VS Code workspace metadata
.vscode/
# Local machine settings
local.properties
# Build outputs and packaged binaries
*.apk
*.aab
*.ap_
*.dex
*.class
# Native and symbol artifacts
*.so
*.o
*.obj
*.a
*.lib
*.pdb
# NCNN vendored static libs are required for CMake to link.
# Whitelist the prebuilt arm64-v8a archives so they ship in the repo
# (~15 MB, well inside GitHub's per-file/per-repo soft limits).
!app/src/main/cpp/ncnn/lib/**/*.a
# Python virtual environments and caches
.venv/
venv/
env/
**/__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
# Logs and temp files
*.log
*.tmp
*.temp
warnings.txt
Info.txt
# OS files
.DS_Store
Thumbs.db
# Local-only workspace archive
archive_local/
# Training generated artifacts and local datasets
training/dataset/
training/raw_frames/
training/videos/
training/outputs/
training/export/
training/export
# Keep model deployment folder structure but ignore actual deployed model binaries
app/src/main/assets/models/*
!app/src/main/assets/models/.gitkeep
# Model and checkpoint artifacts generated during training
training/**/*.pt
training/**/*.pth
training/**/*.onnx
training/**/*.bin
training/**/*.param