data-science-from-scratch icon indicating copy to clipboard operation
data-science-from-scratch copied to clipboard

code for Data Science From Scratch book

Results 84 data-science-from-scratch issues
Sort by recently updated
recently updated
newest added

Looks like in python 3 they changed maps to be non-iterables so the code needs to look like: plt.plot(x, list(map(derivative_estimate, x)), 'b+')

Hi, Joel I started reading the Japanese edition since yesterday. A code in this repo, there is a User "Jen" in a list named "users", but there IS NOT the...

Hi Joel, I've run into a problem with function that is called after the training process, to evaluate a new message for spamminess. The algorithm as given goes through every...

There's no example for minimize_stochastic function and it's not clear how to use it – in batch functions you're able to pass anything as target_fn – for minimize_stochastic you should...

Hi Joel, Im am currently going through your book. I really like it although some things go a little quick for me. Especially chapter 7 on bayesian Inference. I understand...

- Add requirements.txt - Remove empty files - Move data files into `data/` folder

Sorry I have a problem concerning the comment in your code: ``` # and then populate the lists with friendships for i, j in friendships: # this works because users[i]...