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
51 changes: 50 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,50 @@
Nothing needs to be added to .gitignore since only a source file (index.html) was added and there are no build artifacts, dependencies, or temporary files in the changes.
```gitignore
# Compiled and binary files
*.pyc
__pycache__/
*.o
*.obj
*.so
*.dll
*.exe

# Dependencies
node_modules/
venv/
.venv/
.env
.env.local
.env.*

# Build and distribution
dist/
build/
target/
*.egg-info/

# Logs and temporary files
*.log
*.tmp
*.swp
*.swo

# Coverage reports
.coverage
coverage/
htmlcov/

# Editors and IDEs
.vscode/
.idea/
*.swp
*.swo

# System files
.DS_Store
Thumbs.db

# Cache directories
.mypy_cache/
.pytest_cache/
.gradle/
```
2 changes: 2 additions & 0 deletions phase1_baseline/data/raw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ noise. For more details, see the `_background_noise_/README.md`.

If you use the Speech Commands dataset in your work, please cite it as:

{% raw %}
```
@article{speechcommandsv2,
author = {{Warden}, P.},
Expand All @@ -155,6 +156,7 @@ archivePrefix = "arXiv",
url = {https://arxiv.org/abs/1804.03209},
}
```
{% endraw %}

## Credits

Expand Down
Loading