-
Notifications
You must be signed in to change notification settings - Fork 17
/
README
51 lines (42 loc) · 2.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
UBC AI project (pfd AI part)
by Aaron Berndsen and Weiwei Zhu
If you use PICS AI (UBC AI) then please acknowledge it by citing Zhu, W. W. et al. 2014 ApJ, 781, 117 .
NEW! The PICS AI now support the .ar2 file format from psrchive.
For this to work you need to install psrchive's python module:
INSTALL psrchive with
configure --enable-shared
make sure to add $PSRHOME/lib/python2.X/site-packages/ to your PYTHONPATH.
Installing psrchive is NOT required when dealing with only pfd files.
*** When using a more recent version of numpy, the classfy program may sometimes end
up in a dead loop of printing a DeprecationWarining message due to a line in presto's python module:
$PRESTO/lib/python/psr_utils.py:892:DeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
Currently, the one way to walk around this problem is to fix the psr_utils.py file in line 888:
887: """
888: bins = int(bins % len(arr))
This fix the variable "bins" to be integer and solve our problem.
TO USE THIS CODE YOU NEED TO INSTALL:
PRESTO (make sure to include the presto python library in your $PYTHONPATH)
sklearn (python package, version 0.12.1)
libblas-dev
theano (python package, version 0.8.2)
python-dev
imagemagick
TO INSTALL the packages:
apt-get install python-dev
apt-get install libblas-dev
easy_install scikit-learn==0.12.1
easy_install theano==0.8.2
apt-get install imagemagick
TO USE OUR PICKLED CLASSIFIERS:
***The following code is from the quickclf.py code in the repo, this code classifer all .pfd file in the current workign directory and save teh result to clfresult.txt. One can then open up and inspect the result using: python pfdviewr.py clfresult.txt
***Be careful: When there are more than one cpu available, the default behavior of the code is to use multi-threading. The code will use up to 20 threads or max(cpu)-1. If you want to turn this behavior off, you can change the default max_threads parameter in file: threadit.py.
import cPickle, glob, ubc_AI
from ubc_AI.data import pfdreader
AI_PATH = '/'.join(ubc_AI.__file__.split('/')[:-1])
classifier = cPickle.load(open(AI_PATH+'/trained_AI/clfl2_BD.pkl','rb'))
pfdfile = glob.glob('*.pfd')
AI_scores = classifier.report_score([pfdreader(f) for f in pfdfile])
text = '\n'.join(['%s %s' % (pfdfile[i], AI_scores[i]) for i in range(len(pfdfile))])
fout = open('clfresult.txt', 'w')
fout.write(text)
fout.close()