-
Updated
May 9, 2021 - Python
regression
Here are 3,130 public repositories matching this topic...
-
Updated
Apr 1, 2021 - Jupyter Notebook
-
Updated
Jul 14, 2021 - Java
-
Updated
Jul 7, 2021 - Python
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
What is the desired addition or change?
With the SFINAE utilities which we have as of now, HAS_MEM_FUNC
can only check for member functions that do not have templates. So, if we have something like:
class Foo
{
template<typename T>
void bar()
{
What's wrong?
-
Updated
Jul 1, 2021 - JavaScript
-
Updated
Jul 24, 2021 - C#
-
Updated
May 23, 2021 - Jupyter Notebook
-
Updated
Jul 25, 2021 - PHP
-
Updated
Nov 13, 2020 - Jupyter Notebook
-
Updated
Jul 25, 2021 - R
-
Updated
Jul 16, 2021 - PHP
-
Updated
Feb 10, 2021 - C++
-
Updated
Nov 30, 2020 - Python
-
Updated
May 21, 2021 - Python
-
Updated
Jul 21, 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
Jul 8, 2021 - OCaml
-
Updated
Jul 23, 2021 - Java
-
Updated
Jul 8, 2020 - MATLAB
Dear team,
I am in stuck when convert very large numpy array to your TSDatasets.
These are what I have tried to fix my issue:
- when building time-series, I used tensorflow.keras.preprocessing.timeseries_dataset_from_array. After this step, the memory is still fine
- I concatenate all batch data into numpy array, this step produces problem so I use numpy memmap to avoi
-
Updated
Feb 8, 2021 - Python
Is your feature request related to a problem? Please describe.
While sales forecasting, it is necessary that the model is given the input about the promotions, special events that are taken care of in the prophet model as the holiday effect. Does orbit support this feature?
-
Updated
Feb 5, 2020 - Python
-
Updated
Jul 20, 2021 - HTML
-
Updated
Jul 25, 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)))