Jonas Skjold Raaschou-Pedersen
Jonas Skjold Raaschou-Pedersen
Hi everyone. This is a recurring problem when inspecting large .ipynb files on github. Fortunately, this is not the way to open and solve the assignment. You should first clone...
Hi @fxj483, it means that you should make a copy of the .ipynb file (CTRL + C) and save it in a different folder than the folder of the cloned...
Hi @KristianKiel , the assignment should be submitted to Absalon. Don't make a new notebook and write your answers there. Only submit the original one that you have edited :)
Hi @fxj483, so the problem is that you are getting an [integer overflow ](https://en.wikipedia.org/wiki/Integer_overflow) error when running your function `eulers_e()`. The variable `y` is shrinking towards zero at a high...
Technically, your function is correct :) The thing is that in the exercise you are specifically asked to base your function on the limit approximation of e^x. Your code is...
@Exile123 , try to change the column names from integers to strings, i.e. '0' instead of 0 etc. (as the function in the assignment text does) :)
hi @fxj483 , the problem is this line `update_weights(y_train, X_train,w,0.001)`. Your `update_weights` function expects the input `(X_, y_, w_, eta)` but you insert `(y_train, X_train,w,0.001)`. You will have to switch...
hi @theaiuel , in the `plot()` method you are specifying `logy=True`. Try using the method without specifying this parameter.
The snippet below worked for me, using `lazy.nvim`, after reinstalling `markdown-preview` (by highlighting it out, pressing clean inside `:Lazy` menu and then reinstalling it): ```nvim { "iamcco/markdown-preview.nvim", init = function()...
> `case_insentitive = false` whithout the single quote works for me. This also works for me :smiley: