Skip to content
#

cnn

Here are 8,072 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

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
kamathhrishi
kamathhrishi commented Jun 27, 2019

The current examples are in the form of scripts. To make easier and more interactive for users of the library it would help to have notebooks demonstrating these examples. For now the notebooks would go under examples folder under branch 2.0 where porting to Python 3+ is happening.

good first issue

Improve this page

Add a description, image, and links to the cnn 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 cnn topic, visit your repo's landing page and select "manage topics."

Learn more