-
Updated
Oct 27, 2020 - Python
regression
Here are 2,438 public repositories matching this topic...
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Nov 2, 2020 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
What is the desired addition or change?
It would be nice to have some time series methods. Like
- naive
- seasonal naive
- seasonal trend loess decomposition.
- Holt Winters
- Exponential smoothing
- Arima
Since many time series come in groups it may be useful to think about how the data should be organized to take in many time series and account for seasonality. Also prob
-
Updated
Oct 1, 2020 - HTML
-
Updated
Nov 2, 2020 - JavaScript
-
Updated
Oct 12, 2020 - C#
-
Updated
Oct 23, 2020 - PHP
-
Updated
Sep 25, 2020 - Jupyter Notebook
-
Updated
Oct 16, 2020 - Jupyter Notebook
-
Updated
Nov 1, 2020 - R
-
Updated
Jul 22, 2020 - C++
-
Updated
Jan 24, 2020 - Python
-
Updated
Sep 25, 2020 - Python
String representations of dataset objects are used for previewing their contents from the terminal. When converting a Dataset object to a string, we build a table using ascii characters. The current table has fixed width columns that do not take full advantage of the terminal real estate if the dataset only contains a few columns.
echo $dataset;
<img width="574" alt="Annotation
-
Updated
Oct 28, 2020 - Jupyter Notebook
-
Updated
Nov 2, 2020 - OCaml
-
Updated
Nov 2, 2020 - Java
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, 2020 - MATLAB
-
Updated
Nov 11, 2017 - C
-
Updated
Sep 18, 2020 - HTML
-
Updated
Sep 6, 2020 - Python
-
Updated
Oct 29, 2020 - Python
-
Updated
Feb 5, 2020 - Python
-
Updated
Nov 2, 2020 - 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)))