⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 clique code with sample data set. clique is a data clustering algorithm which follows hierarchical c
💻
字号:
This code integrates eclat, charm and genmax into one. Note, this isjust a clean version of the individual programs, and as such notoptimal. For instance the original code for Charm and GenMax arefaster that this clean version. Also the genmax implementation usedhere doesn't use all the optimizations described in thepaper. Therefore use this code only for application studies. If youwant to do performance study to compare the algorithm timings, thenplease ask for the original code from me.    RUN IT AS:        eclat -i XXX.data -a <ALG_TYPE> -d <DIFF_TYPE> -s <MINSUP>        other flags (optional)         -o output the patterns found                output format: itemset - sup (tidset)         -a 0 eclat (all frequent sets)               this is the default algorithm         -a 1 charm (all closed sets)         -a 2 genmax (all maximal sets)         -d 0 uses tidsets         -d 1 uses diffsets instead of tidsets (from length 3 onwards)              this is the default value         -d 2 uses diffsets for pass 2 as well                (this should NOT be used for sparse datasets, since tidset                 size of pass 2 is smaller than diffset size for                 sparse sets.)         -c 0 do not eliminate non-closed sets (if -a 1 is used)         -c 1 eliminate non-closed sets (if -a 1 is used)         MINSUP is in fractions, i.e., specify 0.5 if you want 50% minsup or0.01 if you want 1% support.the input database must be in binary, with the following format perrow. This is the IBM datagen format.        CID TID #ITEMS LIST_OF_ITEMSe.g.    1   1   4       0 1 4 6        2   2   3       4 7 9items in the list must be sorted in increasing orderFinally the summary of the run is stored in the summary.outfile. The format of this file is as follows:(parameter options) DB_FILENAME MINSUP NUMTRANS_IN_DB ACTUAL_SUPPORT      [ ITER_i |Ci| |Fi| |Max| XXX]       [TOT total_cands tot_freq total_max xxx] TOT-TIME NUMJOINSI have provided a utility that converts from the ASCII IBM data formatto the binary format. Use it as: makebin XXX.ascii XXX.data

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -