jsr-p

Results 28 comments of jsr-p

On Ubuntu 22.04 with Sway (Wayland) I installed ```bash sudo apt install g++ cmake build-essential qtbase5-dev qttools5-dev-tools libqt5svg5-dev qttools5-dev sudo apt-get install libkf5guiaddons-dev ``` and built the software (Flameshot v12.1.0...

Thinking more about, I guess the #506 PR is not compliant with the `vim.eval` [documentation](https://neovim.io/doc/user/if_pyth.html#python-eval). The documentation states > vim.eval(str) python-eval Evaluates the expression str using the vim internal expression...

@justinmk I have switched to using [LuaSnip](https://github.com/L3MON4D3/LuaSnip) but thanks for considering my comment on the performance!

@pit00 does not work for me; still getting the diagnostic message :/

hi @ninibertelsen , from the assignment text: > For each iteration store the given $\lambda$ and the calculated RMSEs for the rescaled train and test data in a list named...

@ninibertelsen np :) The Warnings get raised because the estimator does not converge. Try increasing the number of iterations as ![image](https://user-images.githubusercontent.com/49307119/90641915-0d716980-e232-11ea-830a-8bf42feba8d3.png). In the context of this exercise it does not...

Hi @SiriSVC , you will have to loop over the list `chars`, apply the `change_url()` function to each string contained in `chars` and append each processed string to the list...

Hi @SiriSVC, you are storing the processed string in a variable with the same name as the function in this line: `change_url = change_url(x) #apply the change_url() function to each...

hi @theaiuel , the reason that your plot turns out weird is that the `survived` variable is a dummy variable. As you can see in the screenshot below the descriptive...