Created
February 12, 2019 22:28
-
-
Save azkalot1/ee7b650b50b427d51419956e5e93baba to your computer and use it in GitHub Desktop.
load_depend.py
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
import csv | |
import gzip | |
import os | |
import scipy.io | |
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from sklearn.decomposition import PCA | |
import umap | |
from sklearn.cluster import Birch, AffinityPropagation, DBSCAN, MeanShift, SpectralClustering, AgglomerativeClustering, estimate_bandwidth | |
from sklearn.mixture import GaussianMixture | |
from sklearn.neighbors import kneighbors_graph | |
from itertools import cycle, islice | |
%matplotlib inline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment