Skip to content
Permalink
f06394675f
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
41 lines (30 sloc) 619 Bytes
from enum import Enum
class Method(Enum):
TRIVIAL = 0
ORIGINAL = 1
GREEDY_TOPK = 2
HET_GREEDY_TOPK = 3
BEST_FIRST = 4
BEAM_SEARCH = 5
HET_BEAM_SEARCH = 6
PREDEFINED = 7
class CorrelationMeasure(Enum):
UDS = 1
CMI = 2
MAC = 3
class DistanceMeasure(Enum):
ID = 1
CJS = 2
ID_THRESHOLD_QUANTILE = 0.80
ID_SLIDING_WINDOW = 40
NORMALIZATION_RADIUS = 1
FILE_DATA_OUTPUT = "out.txt"
FILE_DATA_CUTS = 'cut.txt'
FILE_NAME_PATTERN = '(?:.*/)*(.*)$'
# subspace mining parameters
MAX_SUBSPACE_SIZE = 5
HETEROGENEOUS_THRESHOLD=0.8
BEAM_WIDTH=4
# cjs
CLUMP = 2
MAXMAX = 5