-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Cheng Soon Ong edited this page Jan 20, 2016
·
3 revisions
25 Jan: Experimental protocol, results for UCI 1 Feb: Methods, Caltech256 8 Feb: Software release, description of SDSS data 15 Feb: Run on SDSS, Submission deadline
Chapter 2: Methods (knfst, density estimation, logistic regression) Chapter 3: Experimental protocol, results on 3 UCI datasets, visualisation of Caltech256 Chapter 4: SDSS accuracy
python -m cProfile -o outfile.prof myscript.py
import pstats
p = pstats.Stats('outfile.prof')
p.sort_stats('cumulative').print_stats(10)
p.sort_stats('time').print_stats(10)
p.strip_dirs().sort_stats(-1).print_stats()