This file contains hidden or 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
| # Copyright Mathieu Blondel December 2011 | |
| # License: BSD 3 clause | |
| import numpy as np | |
| import pylab as pl | |
| from sklearn.base import BaseEstimator | |
| from sklearn.utils import check_random_state | |
| from sklearn.cluster import MiniBatchKMeans | |
| from sklearn.cluster import KMeans as KMeansGood |
This file contains hidden or 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
| # Patterns matching CSS files that should be minified. Files with a -min.css | |
| # suffix will be ignored. | |
| CSS_FILES = $(filter-out %-min.css,$(wildcard \ | |
| public/css/*.css \ | |
| public/css/**/*.css \ | |
| )) | |
| # Patterns matching JS files that should be minified. Files with a -min.js | |
| # suffix will be ignored. | |
| JS_FILES = $(filter-out %-min.js,$(wildcard \ |
NewerOlder