-
Updated
Jan 20, 2021 - Python
regression
Here are 2,675 public repositories matching this topic...
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Jan 15, 2021 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Nov 30, 2020 - Python
What is the desired addition or change?
A parameter check should be added to all bindings that checks for the correct relative input shapes. For example the training data and training labels must have the same number of samples, testing data and training data must have the same number of features etc.
What is the motivation for this feature?
Refer to #2818 for more information and
- What's wrong?
Rank widget does not show that Manual selection is active, if:
- Best ranked was active.
- I clicked into the white part of the table to deselect.
The "Select Attributes" radio button still has "Best ranked" active, but nothing is selected (and the status bar shows that nothing gets to the output). Instead, the "Select Attributes" radio button should switch to "
-
Updated
Feb 1, 2021 - JavaScript
-
Updated
Jan 15, 2021 - C#
-
Updated
Jan 30, 2021 - PHP
-
Updated
Dec 9, 2020 - Jupyter Notebook
-
Updated
Nov 13, 2020 - Jupyter Notebook
-
Updated
Feb 5, 2021 - R
-
Updated
Jan 27, 2021 - C++
-
Updated
Nov 30, 2020 - Python
-
Updated
Feb 5, 2021 - PHP
-
Updated
Nov 24, 2020 - Python
The PR JuliaData/CategoricalArrays.jl#310 means that an array with elements of type Symbol can no longer be wrapped as a CategoricalArray.
This means all MLJ documentation and test code that uses symbols in categorical data must be refactored to use strings instead.
These repos, at least, need checking/refactoring, in order of priority:
-
MLJ
-
[x]
-
Updated
Jan 6, 2021 - OCaml
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
Feb 4, 2021 - Java
-
Updated
Jul 8, 2020 - MATLAB
-
Updated
Sep 6, 2020 - Python
-
Updated
Feb 5, 2020 - Python
-
Updated
Feb 5, 2021 - HTML
-
Updated
Dec 17, 2020 - C
-
Updated
Oct 29, 2020 - Python
-
Updated
Feb 5, 2021 - R
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)))