Skip to content

Instantly share code, notes, and snippets.

View demacdolincoln's full-sized avatar

Lincoln de Macêdo demacdolincoln

  • Brasil
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / simples_regressao_linear.ipynb
Created August 6, 2018 23:24
o exemplo mais básico de todos sobre regressão linear com o pytorch
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / fractal.ipynb
Created August 28, 2018 07:29
a simple exemple ~> mandelbrot fractal
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / simple_linear_regression-julia.ipynb
Created September 9, 2018 03:47
simples regressão linear em Julia
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / word2vec.ipynb
Last active September 23, 2018 20:35
word2vec
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / CNN.py
Created January 11, 2019 16:33
simple pytorch cnn
class CNN(nn.Module):
def __init__(self):
super(CNN, self).__init__()
self.conv1 = nn.Sequential(
nn.Conv2d(1, 16, 5, stride=2),
nn.ReLU(),
nn.MaxPool2d(kernel_size=2)
)
self.conv2 = nn.Sequential(
nn.Conv2d(16, 32, 5, stride=2),
@demacdolincoln
demacdolincoln / copy-of-tensorboard-fastai.ipynb
Created February 1, 2020 06:00
Copy of tensorboard-fastai.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@demacdolincoln
demacdolincoln / simple_example_rnn_regression_time_serie.ipynb
Created February 6, 2020 04:01
simple_example_rnn_regression_time_serie.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.