-
Updated
Sep 7, 2021 - Python
regression
Here are 3,505 public repositories matching this topic...
-
Updated
Apr 1, 2021 - Jupyter Notebook
-
Updated
Jul 7, 2021 - Python
-
Updated
Nov 10, 2021 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
Describe the bug
- W-THU is not supported right now. It only works if user specifies
seasonal_periodin setup
Expected behavior
Would have expected it to automatically infer the freq = 52 from there.
-
Updated
Oct 31, 2020 - Python
Hi,
There are still parts of boost library that are used inside mlpack, more specifically in here
mlpack/src/mlpack/core/tree/cosine_tree/cosine_tree.hpp. // boost::heapmlpack/src/mlpack/core/data/load_arff.hpp. // boost::tokenizer
We would like to replace this one with the standard library if possible. If someone is interested in taking this issue feel free to do so.
-
Updated
Nov 26, 2021 - Python
-
Updated
Nov 26, 2021 - Java
-
Updated
Nov 1, 2021 - JavaScript
-
Updated
Nov 28, 2021 - C#
-
Updated
Oct 22, 2021 - Jupyter Notebook
-
Updated
Nov 22, 2021 - PHP
-
Updated
Nov 10, 2021 - Jupyter Notebook
-
Updated
Nov 27, 2021 - R
-
Updated
Nov 14, 2021 - PHP
-
Updated
Feb 10, 2021 - C++
-
Updated
Nov 30, 2020 - Python
-
Updated
Aug 25, 2021 - Python
-
Updated
Nov 24, 2021 - Julia
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
Nov 26, 2021 - Python
-
Updated
Nov 27, 2021 - Jupyter Notebook
-
Updated
Nov 28, 2021 - Java
-
Updated
Nov 5, 2021 - OCaml
-
Updated
Nov 8, 2021 - Julia
-
Updated
Nov 26, 2021 - Python
-
Updated
Jul 8, 2020 - MATLAB
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)))