-
Updated
Sep 14, 2020 - Python
regression
Here are 2,300 public repositories matching this topic...
-
Updated
Jun 8, 2020 - Jupyter Notebook
-
Updated
Sep 17, 2020 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Aug 5, 2020 - Python
Suggest that adding classification to LSTM and regressor to RandomForest on these two most popular models.
RandomForest is an awesome classification tool but it lacks of sequential data maneuver. Put a classification onto RNN/LSTM/GRU would be a good choice to get output probabilities. Ryan mentioned using a softmax layer as last layer with nodes equals to the class number.
Also, on time ser
-
Updated
Jul 31, 2020 - HTML
-
Updated
Sep 8, 2020 - JavaScript
-
Updated
Sep 1, 2020 - C#
-
Updated
Sep 16, 2020 - PHP
-
Updated
Jan 28, 2020 - Jupyter Notebook
-
Updated
Aug 30, 2020 - Jupyter Notebook
-
Updated
Sep 17, 2020 - R
-
Updated
Jul 22, 2020 - C++
-
Updated
Jan 24, 2020 - Python
-
Updated
Aug 25, 2020 - Python
-
Updated
Sep 15, 2020 - OCaml
-
Updated
Sep 17, 2020 - Jupyter Notebook
Hi @JavierAntoran @stratisMarkou,
First of all, thanks for making all of this code available - it's been great to look through!
Im currently spending some time trying to work through the Weight Uncertainty in Neural Networks in order to implement Bayes-by-Backprop. I was struggling to understand the difference between your implementation of `Bayes-by-Bac
-
Updated
Jul 8, 2020 - MATLAB
-
Updated
Nov 11, 2017 - C
-
Updated
Sep 16, 2020 - HTML
-
Updated
Sep 6, 2020 - Python
-
Updated
Aug 11, 2020 - Python
-
Updated
Sep 17, 2020 - R
-
Updated
Aug 21, 2020 - HTML
-
Updated
Sep 25, 2017 - Python
Improve this page
Add a description, image, and links to the regression topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the regression topic, visit your repo's landing page and select "manage topics."


Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))