Skip to content

Instantly share code, notes, and snippets.

View mirrornerror's full-sized avatar

mirrornerror mirrornerror

  • Japan
View GitHub Profile
@mirrornerror
mirrornerror / convex_hull.ipynb
Last active February 8, 2019 20:18
convex hull: gift wrapping / graham scan
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
arr = np.array([1, 2, 3])
print(type(arr))
# <class 'numpy.ndarray'>
print(isinstance(arr, (np.ndarray)))
# True
ls = [1, 2, 3]
print(type(ls))
# <class 'list'>
print(isinstance(ls, (np.ndarray)))
@mirrornerror
mirrornerror / TSP.ipynb
Last active January 29, 2019 00:59
TSP OPT
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / hyperopt_gen_simple.ipynb
Last active November 20, 2018 15:20
Kaggle: Digital Recognizer(MNIST) by Hyperopt + fit_generator
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / hyperopt_aug_mnist.ipynb
Last active May 5, 2020 09:11
Kaggle: Digital Recognizer(MNIST) by Hyperopt + Data Augment
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / gpyopt_mnist.ipynb
Last active March 5, 2019 15:08
Kaggle Didital Recognizer(MNIST) using GPyOpt
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / hyperopt_mnist.ipynb
Created November 10, 2018 08:19
Kaggle: Digital Recognizer(MNIST) by Hyperopt
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / simple_hyperas.ipynb
Last active November 9, 2018 20:54
Kaggle Digit recognizer(MNIST) by Hyperas
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / auto-keras-mnist.ipynb
Created November 5, 2018 03:10
Kaggle: Digit Recognizer, Auto-Keras
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mirrornerror
mirrornerror / Titanic-one-hot.ipynb
Created November 3, 2018 18:32
Titanic One-Hot Keras CNN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.