- CMakeLists.txt: remove extra blank lines, fix install rule condition - .gitignore: add build/, IDE, Python cache, OS files, model artifacts - CHANGELOG.md: document recent improvements (tests, FFT, ONNX, API changes) - README.md: add link to CHANGELOG - Remove build artifacts from git trackingzhaochang_branch
parent
e451d75ab5
commit
ed014e08a0
@ -1,19 +1,42 @@
|
||||
# Build artifacts
|
||||
build/
|
||||
build/*.o
|
||||
build/*.obj
|
||||
build/*.exe
|
||||
CMakeCache.txt
|
||||
CMakeFiles/
|
||||
cmake-build-*/
|
||||
Makefile
|
||||
|
||||
# IDE
|
||||
.vs/
|
||||
.vscode/
|
||||
*.user
|
||||
*.suo
|
||||
*.sln
|
||||
*.vcxproj*
|
||||
|
||||
# Python cache
|
||||
scripts/__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
__pycache__/
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.log
|
||||
*.swp
|
||||
*.bak
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Model training artifacts
|
||||
checkpoints/
|
||||
*.pth
|
||||
runs/
|
||||
|
||||
# Output files
|
||||
output/*.wav
|
||||
output/*.txt
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue