Skip to content
#

regression

Here are 4,174 public repositories matching this topic...

ychong
ychong commented Feb 8, 2018

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)))

enhancement good first issue
ngupta23
ngupta23 commented Apr 16, 2022

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
enhancement good first issue time_series plots

Powerful modern math library for PHP: Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra

  • Updated Apr 17, 2022
  • PHP

Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai

  • Updated Jul 6, 2022
  • Jupyter Notebook
danielkelshaw
danielkelshaw commented Apr 30, 2020

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

good first issue question

Improve this page

Add a description, image, and links to the regression topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the regression topic, visit your repo's landing page and select "manage topics."

Learn more