2013年5月30日 星期四

pyinstaller

convert your py file to exe file
user who can execute your program without python
Install:
just unzip to your file folder

Usage:
python pyinstaller.py /path/to/yourscript.py
or
python /path/to/pyinstaller.py yourscript.py

2013年5月6日 星期一

Weka FP Growth dataset

Weka FPGrowth needs Binary attributes, arff form likes this:


@relation FPGrowth dataset

@attribute a {1,0}
@attribute b {1,0}
@attribute c {1,0}

@data
0,0,0
0,0,1
0,1,0
0,1,1
1,0,0
1,0,1
1,1,0
1,1,1