-
Updated
Mar 19, 2022 - Python
regression
Here are 3,892 public repositories matching this topic...
-
Updated
Jan 20, 2022 - Jupyter Notebook
-
Updated
Jul 7, 2021 - Python
-
Updated
Mar 22, 2022 - Java
Is your feature request related to a problem? Please describe.
With the March release of time series module, we have the ability to plot multiple forecasts in a single plot. This works ok if we have different models (such as from the output of compare_models
). But sometimes, we want to compare different versions of the same model in which case, we get the same legend
from py
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
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::heap -
mlpack/src/mlpack/core/data/load_arff.hpp
boost::tokenizer -
mlpack/tests/main_tests/emst_test.cpp
boost::math::iround() -
mlpack/core/tree/cosine_tree/cosine_tree.cpp
boost::m
-
Updated
Apr 8, 2022 - Python
-
Updated
Apr 7, 2022 - Java
-
Updated
Apr 3, 2022 - C#
-
Updated
Apr 1, 2022 - JavaScript
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Dec 1, 2021 - PHP
-
Updated
Apr 6, 2022 - Jupyter Notebook
I published a new v0.1.12 release of HCrystalBall, that updated some package dependencies and fixed some bugs in cross validation.
Should the original pin for 0.1.10 be updated? Unfortunately won't have time soon to submit a PR for this.
-
Updated
Feb 9, 2022 - Jupyter Notebook
-
Updated
Apr 4, 2022 - R
-
Updated
Apr 3, 2022 - PHP
-
Updated
Apr 1, 2022 - C++
-
Updated
Apr 7, 2022 - TeX
-
Updated
Apr 7, 2022 - Python
-
Updated
Nov 30, 2020 - Python
-
Updated
Feb 10, 2022 - Python
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
Apr 4, 2022 - Python
-
Updated
Feb 25, 2022 - Julia
-
Updated
Apr 8, 2022 - Java
-
Updated
Mar 8, 2022 - OCaml
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)))