Skip to content

Instantly share code, notes, and snippets.

View NeuroWhAI's full-sized avatar
🤔
Thinking

NeuroWhAI NeuroWhAI

🤔
Thinking
View GitHub Profile

Keybase proof

I hereby claim:

  • I am neurowhai on github.
  • I am neurowhai (https://keybase.io/neurowhai) on keybase.
  • I have a public key ASCayBuVkVv56r06LjMRaEeuW13n61qVRZnicPpWfO7phgo

To claim this, I am signing this object:

@NeuroWhAI
NeuroWhAI / keras-seq2seq-with-attention.py
Created December 4, 2018 09:54
(Keras) Seq2Seq with Attention!
from keras import layers, models
from keras import datasets
from keras import backend as K
from keras.utils import plot_model
import matplotlib
from matplotlib import ticker
import matplotlib.pyplot as plt
import numpy as np
#from IPython.display import Image, display
@NeuroWhAI
NeuroWhAI / tfjs test.html
Created April 1, 2018 04:07
TensorFlow.js test
<!doctype html>
<html>
<head>
<title>TF.js Test</title>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@0.6.1"></script>
<script type="text/javascript">
// 선형회귀 모델 생성
const model = tf.sequential();
model.add(tf.layers.dense({units: 1, inputShape: [1]}));
@NeuroWhAI
NeuroWhAI / TensorFlow-DCGAN-MNIST.py
Last active March 14, 2018 11:29
Generate MNIST images with DCGAN.
#-*- coding: utf-8 -*-
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("./mnist/data/", one_hot=True)
total_epoch = 100
#include <unordered_map>
#include <deque>
#include <functional>
#include <type_traits>
#include <tuple>
#include <utility>
#include <memory>
#include <algorithm>
@NeuroWhAI
NeuroWhAI / Action.hpp
Last active May 28, 2017 03:30
Parameters like Member variables
#include <memory>
#include <functional>
#include <type_traits>
#include <tuple>
#include <utility>
template <typename... ARGS>