Exemple #1
0
#!/usr/bin/env python3

# install dependencies to a local subdirectory
import dependencies
dependencies.assert_pkgs({
    'numpy': 'numpy',
    'pandas': 'pandas',
    'scipy': 'scipy',
    'sklearn': 'scikit-learn',
    'xStream': 'contrib/xStream.tar.bz2',
    'pysdo': 'https://github.com/CN-TU/pysdo/archive/master.zip',
    'dSalmon': 'git+https://github.com/CN-TU/dSalmon'
})

import numpy as np
import pandas as pd

import sys
import glob
import os
import re
import ntpath
import time
import subprocess
import pickle
import gzip
from scipy.io.arff import loadarff 

import pysdo
import indices
from xStream import xStream
Exemple #2
0
#!/usr/bin/env python3

import dependencies
dependencies.assert_pkgs({
    'numpy': 'numpy',
    'pandas': 'pandas',
    'scipy': 'scipy',
    'sklearn': 'scikit_learn',
    'hdbscan': 'hdbscan',
    'networkx': 'networkx',
    'matplotlib': 'matplotlib',
    'kneed': 'kneed',
    'KDEpy': 'KDEpy',
})