Sebastian Raschka

Results 183 issues of Sebastian Raschka

Figure 13.7 contains the phrase "magiying glass." Not sure if this is a typo ("magnifying glass") or a joke though :) (a la "automagically")

The figure caption says > this figure is courtesy Olaf Ronneberger instead of > this figure is courtesy of Olaf Ronneberger

I think it should be "BatchNorm1d": ![Screen Shot 2021-01-15 at 5 46 57 PM](https://user-images.githubusercontent.com/5618407/104789153-d0b28b80-5759-11eb-9c33-8a063de3743b.png)

Maybe I am overlooking something, but the figures seem to be duplicated: ![Screen Shot 2021-01-15 at 5 45 16 PM](https://user-images.githubusercontent.com/5618407/104789043-85987880-5759-11eb-9eaa-65d80c09d3dd.png) ![Screen Shot 2021-01-15 at 5 45 24 PM](https://user-images.githubusercontent.com/5618407/104789047-86c9a580-5759-11eb-8095-78183dcc4460.png)

I took some notes reg. potential errata/suggestions when reading. As I am currently digitizing my handwritten notes, I thought it might be useful to share those. In Listing 11.12, I...

Just reading chapter 4, you mentioned on pg. 83 that ordinal targets are usually either treated as continuous ("metric" regression) or nominal (conventional classification). Just wanted to mention that there...

I think in certain settings, it would be useful to redirect the progress bar/percentage to a log file (for example, if we are running scripts remotely and don't want to...

enhancement

> Suggestion : I would recommend and suggest that the author do a flowchart or a diagram for all steps from chapter 1 to 6 for each Machine learning algorithm...

enhancement

actually, I am not sure why I wasn't computing it with loss = np.sum((onehot_targets - probas)**2) (instead of mean) in the loop and then using mse = mse/num_examples instead of...