This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""Clustering with Kernel K-means.""" | |
# Author: Mathieu Blondel <[email protected]> | |
# Author: Akira Tamamori | |
# License: BSD 3 clause | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from sklearn.base import BaseEstimator, ClusterMixin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
raise ValueError("DEPRECATED/FROZEN - see https://github.com/kastnerkyle/tools for the latest") | |
# License: BSD 3-clause | |
# Authors: Kyle Kastner | |
# Harvest, Cheaptrick, D4C, WORLD routines based on MATLAB code from M. Morise | |
# http://ml.cs.yamanashi.ac.jp/world/english/ | |
# MGC code based on r9y9 (Ryuichi Yamamoto) MelGeneralizedCepstrums.jl | |
# Pieces also adapted from SPTK | |
from __future__ import division | |
import numpy as np |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Configurations for ivy-mode (load "/path/to/init-ivy.el" nil t) | |
;; This elisp may require: | |
;; smex.el, all-the-icons.el, flyspell-correct-ivy.el, counsel-world-clock.el | |
;; counsel-gtalgs.el, all-the-icons-ivy.el, counsel-projectile.el | |
;; prescient.el, counsel-selected.el, counsel-osx-app.el, ivy-dired-history.el | |
;; magit.el, org-recent-headings.el, ivy-posframe.el | |
;; 2019-07-26 published. | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
(require 'ivy) | |
(require 'counsel) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import os | |
from nnmnkwii.datasets import jsut | |
import librosa | |
import librosa.display | |
from matplotlib import pyplot as plt | |
from nnmnkwii.io import hts | |
from os.path import exists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# It only has two dependencies numpy and tensorflow | |
import numpy as np | |
import tensorflow as tf | |
from config import cfg | |
# Class defining a Convolutional Capsule | |
# consisting of multiple neuron layers | |
# |