Skip to content

Instantly share code, notes, and snippets.

@naotokui
naotokui / turntable_qlearning_keras.ipynb
Created January 25, 2017 12:36
DQN Turntable Control for AI-DJ
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / turntable_qlearning_keras.ipynb
Created January 25, 2017 12:36
DQN Turntable Control for AI-DJ
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / audio_lstm_samplernn_keras.ipynb
Created January 20, 2017 01:30
Audio generation with LSTM. inspired by SampleRNN architecture (work in progress)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / audio_lstm_keras.ipynb
Last active June 30, 2019 21:55
Audio generation with LSTM in keras
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / midi_lstm_keras.ipynb
Last active January 14, 2017 02:31
Training LSTM on MIDI Data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / seq2seq_autoencoder_keras.ipynb
Created January 11, 2017 08:11
sequence2sequence autoencoder in keras
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / midi_playback.py
Last active April 21, 2022 11:27
Play MIDI file in Python
# see: https://www.daniweb.com/programming/software-development/code/216976/play-a-midi-music-file-using-pygame
# sudo pip install pygame
# on ubuntu
# sudo apt-get install python-pygame
import pygame
def play_music(music_file):
@naotokui
naotokui / conv_autoencoder_keras.ipynb
Created January 10, 2017 04:17
Convolutional Autoencoder in Keras
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / interpolating_sentences.ipynb
Last active November 18, 2016 05:36
Interpolating Skip-thought vectors
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@naotokui
naotokui / get_bing_search_results_number.py
Created November 7, 2016 11:18
Get the number of search results on Bing search
# -*- coding: utf-8 -*-
# based on https://gist.github.com/o-tomox/6649758#file-bing_api-py
import urllib
import requests
import json
class Bing(object):
def __init__(self, key):
self.api_key = key