Skip to content

Commit fbe83ab

Browse files
author
Ethan Manilow
committed
Fixing typos and updating nussl install info
1 parent 7a72fa7 commit fbe83ab

File tree

5 files changed

+23
-11
lines changed

5 files changed

+23
-11
lines changed

book/basics/evaluation.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"measures struggle because there are many aspects of human perception that are\n",
2222
"extremely difficult capture by computational means alone. However, compared to\n",
2323
"subjective measures, they are much faster and cheaper to obtain. On the other\n",
24-
"hand, subjective measures are expensive, time-consuming, and subject to\n",
24+
"hand, subjective measures are expensive, time-consuming, and subject to the\n",
2525
"variability of human raters, but they can be more reliable than objective\n",
26-
"measures because humans are involved in t\n",
26+
"measures because actual human listeners are involved in the evaluation process.\n",
2727
"\n",
2828
"\n",
2929
"Objective measures are, by far, much more popular than subjective measures, but\n",
@@ -256,7 +256,7 @@
256256
"name": "python",
257257
"nbconvert_exporter": "python",
258258
"pygments_lexer": "ipython3",
259-
"version": "3.8.5"
259+
"version": "3.7.6"
260260
}
261261
},
262262
"nbformat": 4,

book/basics/representations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Six commonly used window types for calculating an STFT.
206206

207207
The window type determines the shape of the short-time window that will segment
208208
the audio into short segments before applying the DFT. The shape of this window
209-
can will affect which frequencies get emphasized or attenuated in the DFT. There
209+
will affect which frequencies get emphasized or attenuated in the DFT. There
210210
are many types of window functions, in {numref}`window_types`, we show the most
211211
common ones when calculating an STFT for source separation. For more information
212212
on other types of windows and their frequency response, please see `scipy.signal`'s
@@ -246,7 +246,7 @@ the frequency resolution and vice versa, as is visible in {numref}`window_lens`.
246246
alt: The hope length determines the distance (in samples) between adjacent short-time windows.
247247
name: hop_lens
248248
---
249-
The hope length determines the distance (in samples) between adjacent short-time
249+
The hop length determines the distance (in samples) between adjacent short-time
250250
windows. An STFT is computed twice on the same signal; the smaller the hop length
251251
the more times a particular segment of the audio signal is represented in the
252252
STFT.

book/first_steps/byo_hpss.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@
332332
"name": "python",
333333
"nbconvert_exporter": "python",
334334
"pygments_lexer": "ipython3",
335-
"version": "3.8.5"
335+
"version": "3.7.6"
336336
}
337337
},
338338
"nbformat": 4,

book/first_steps/nussl_intro.ipynb

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,23 @@
4242
"\n",
4343
"\n",
4444
"\n",
45+
"## Installing nussl\n",
46+
"\n",
47+
"You can install nussl through pip like so:\n",
48+
"\n",
49+
"- `pip install nussl`\n",
50+
"\n",
51+
"\n",
52+
"In this tutorial, nussl is installed through the `common` utility library. This library was specifically created for the tutorial and will provide functions for us to visualize and interact with audio. It will also install `nussl` and `scaper` into the notebook environments for use on these pages.\n",
53+
"\n",
54+
"\n",
4555
"\n",
4656
"## nussl Resources\n",
4757
"\n",
48-
"- [nussl's Github repository is located here.](https://github.com/nussl/nussl)\n",
49-
"- [Documentation for nussl is located here.](https://nussl.github.io/docs/)\n",
58+
"This tutorial will guide you through using nussl, but for further details see the following links:\n",
59+
"\n",
60+
"- [nussl's Github repository](https://github.com/nussl/nussl)\n",
61+
"- [nussl's Documentation pages.](https://nussl.github.io/docs/)\n",
5062
"\n",
5163
"\n",
5264
"## nussl Basics\n",
@@ -730,7 +742,7 @@
730742
"\n",
731743
"Let’s do something a little more interesting with our `AudioSignal` object. Since `signal1.stft_data` is just a regular numpy array, we can access and manipulate it as such. So let’s implement a low pass filter by creating a new `AudioSignal` object and leaving `signal1` unaltered.\n",
732744
"\n",
733-
"Let’s eliminate all frequencies above about 400 Hz in our signal."
745+
"Let’s eliminate all frequencies above about 1000 Hz in our signal."
734746
]
735747
},
736748
{
@@ -1010,7 +1022,7 @@
10101022
"name": "python",
10111023
"nbconvert_exporter": "python",
10121024
"pygments_lexer": "ipython3",
1013-
"version": "3.8.5"
1025+
"version": "3.7.6"
10141026
}
10151027
},
10161028
"nbformat": 4,

book/first_steps/repetition.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@
10761076
"name": "python",
10771077
"nbconvert_exporter": "python",
10781078
"pygments_lexer": "ipython3",
1079-
"version": "3.8.5"
1079+
"version": "3.7.6"
10801080
}
10811081
},
10821082
"nbformat": 4,

0 commit comments

Comments
 (0)