Skip to content
Permalink
7168cf4865
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (13 sloc) 281 Bytes
from enum import Enum
class Method(Enum):
ORIGINAL = 1
EXTENDED = 2
class Correlation_measure(Enum):
UDS = 1
CMI = 2
MAC = 3
ID_THRESHOLD_QUANTILE = 0.8
NORMALIZATION_RADIUS = 1
FILE_DATA_OUTPUT = "out.txt"
FILE_DATA_CUTS = 'cut.txt'
MAX_SUBSPACE_SIZE = 5