-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge japanese-to-english multilingual branch #1860
base: master
Are you sure you want to change the base?
Conversation
|
||
```shell | ||
./zipformer/streaming_decode.py \ | ||
--epoch 28 \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the Reazonspeech is a large dataset, I suggest that you replace --epoch
with --iter
. See also RESULTS.md
from our Gigaspeech recipe. You can find example usages of --iter
there.
With regards to Setup Python 3.10.15 issue - how do I resolve this issue? I didn't change anything related to Python issue. |
please change icefall/.github/workflows/style_check.yml Line 39 in ab91112
to
That is, change It is an issue of GitHub actions and is not related to your PR. |
Looks like this hasn't resolved the issue. |
Please use
not
|
@JinZr Can you have a review? |
ok! i’ll look into it this weekend
Best Regards
Jin
…On Mon, 20 Jan 2025 at 18:20 Fangjun Kuang ***@***.***> wrote:
@JinZr <https://github.com/JinZr> Can you have a review?
—
Reply to this email directly, view it on GitHub
<#1860 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOON42C3NPJXZY77BY33URL2LTEWBAVCNFSM6AAAAABUW64FCWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMMBRHE4TSMZQGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i’ve completed reviewing this PR, and it looks great overall!
there are also some unnecessary changes to other dependencies that might need to be addressed before merging
icefall/utils.py
Outdated
@@ -644,7 +644,8 @@ def write_error_stats( | |||
results[i] = (cut_id, ref, hyp) | |||
|
|||
for cut_id, ref, hyp in results: | |||
ali = kaldialign.align(ref, hyp, ERR, sclite_mode=sclite_mode) | |||
# ali = kaldialign.align(ref, hyp, ERR, sclite_mode=sclite_mode) | |||
ali = kaldialign.align(ref, hyp, ERR) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you provide some context on why the ''sclite_mode'' argument was removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please avoid unnecessary modifications to built-in files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please avoid unnecessary modifications to built-in files, thanks
No description provided.