Skip to content

Commit 4089a77

Browse files
committed
'Auto commit by script'
1 parent 39548af commit 4089a77

13 files changed

+339
-1
lines changed

.idea/Automatic-Speech-Recognition-from-Scratch.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
5.59 KB
Binary file not shown.
4 Bytes
Binary file not shown.

.idea/copilot/chatSessions/xd.lck

+47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deployment.xml

+63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+93
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jupyter-settings.xml

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It aims to serve as a thorough tutorial for new beginners who is interested in t
77

88
It contains almost everything you need to build a simple ASR model from scratch, such as training codes, inference codes, checkpoints, training logs and inference logs.
99

10-
**With this repository, you are expected to learn**:
10+
**With this repository, you are expected to learn:**
1111
- How to build a Transformer model from scratch;
1212
- How to apply Transformer into ASR task;
1313
- How to pre-process and load audio data;

sync.bat

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
@echo off
2+
3+
set default_commit_message="Auto commit by script"
4+
echo Enter commit message (leave empty for default):
5+
set /p commit_message=
6+
if "%commit_message%" == "" (
7+
set commit_message=%default_commit_message%
8+
)
9+
10+
echo 'Committing with message: %commit_message%'
11+
12+
git add .
13+
git commit -m '%commit_message%'
14+
git push origin main
15+
16+
echo Done.
17+
18+
pause

0 commit comments

Comments
 (0)