-
Notifications
You must be signed in to change notification settings - Fork 427
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
Fix typos in 02_Filterbank.ipynb
#527
Conversation
@@ -126,8 +126,7 @@ | |||
} | |||
], | |||
"source": [ | |||
"from asteroid.filterbanks import STFTFB\n", | |||
"from asteroid.filterbanks.transforms import take_mag\n", |
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.
This line is redundant.
@@ -193,7 +192,7 @@ | |||
"metadata": {}, | |||
"source": [ | |||
"## Making an encoder-decoder pair in one line \n", | |||
"[`make_enc_dec`](https://github.com/asteroid-team/asteroid/blob/master/asteroid/filterbanks/__init__.py#L12) is a small function that helps making encoder-decoder pairs in an efficient way. Let's see some examples :\n" | |||
"[`make_enc_dec`](https://github.com/asteroid-team/asteroid-filterbanks/blob/master/asteroid_filterbanks/__init__.py#L14-L70) is a small function that helps making encoder-decoder pairs in an efficient way. Let's see some examples :\n" |
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.
to the asteroid/asteroid-filterbanks
repository
Thanks for the fix, it's quite useful. Can you had the notebook |
asteroid.filterbanks
to asteroid_filterbanks
with a fixed link02_Filterbank.ipynb
@JorisCos does this look good? Thanks 😊 |
Looks great ! |
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.
Thanks again @hihunjin
asteroid.filterbanks
toasteroid_filterbanks
on the colab notebook.Additionally, I changed the link of asteroid_filterbanks from asteroid.filterbanks.
This PR is with the issue "No module named 'asteroid.filterbanks' #525"
Thanks in advance.