-
Updated
Jul 7, 2022 - Python
regression
Here are 4,174 public repositories matching this topic...
-
Updated
May 16, 2022 - Jupyter Notebook
-
Updated
Jul 7, 2021 - Python
Is your feature request related to a problem? Please describe.
In time series plotting module, lot of plots are customized at the end - template, fig size, etc. Since the same code is repeated in all these plots, maybe this could be modularized and reused.
with fig.batch_update():
template = _resolve_dict_keys(
dict_=fig_kwargs, key="template", defaults=fig_default
-
Updated
May 20, 2022 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
C++17 switch
What is the desired addition or change?
provide a cmake c++17 switch
What is the motivation for this feature?
to not depend on the std_backport
If applicable, describe how this feature would be implemented.
change those lines from 11
to 17
conditional to a global define
https://github.com/mlpack/mlpack/blob/de94eee6881e33f1145d9d4a8b5380a5be8af36a/CMakeLists.txt#L
-
Updated
Jul 9, 2022 - Python
-
Updated
Jul 6, 2022 - Java
-
Updated
Jul 4, 2022 - C#
-
Updated
Jul 5, 2022 - JavaScript
-
Updated
Jun 21, 2022 - Jupyter Notebook
-
Updated
Apr 17, 2022 - PHP
-
Updated
Jul 6, 2022 - Jupyter Notebook
ray.init(n_cpus=16)
should be
ray.init(num_cpus=16)
in the documentation page
https://microsoft.github.io/FLAML/docs/Use-Cases/Task-Oriented-AutoML#parallel-tuning
-
Updated
May 26, 2022 - Jupyter Notebook
-
Updated
Jul 9, 2022 - PHP
-
Updated
Jul 5, 2022 - R
-
Updated
Jul 9, 2022 - Julia
-
Updated
Jul 8, 2022 - Python
-
Updated
Apr 9, 2022 - C++
-
Updated
Nov 30, 2020 - Python
-
Updated
Jun 21, 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
Jul 9, 2022 - Python
-
Updated
Jul 8, 2022 - Java
-
Updated
Jun 6, 2022 - Julia
-
Updated
Jul 6, 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)))