2010
04.18
04.18
I released the code for one of my CVPR 2010 papers, “Online Multi-Class LPBoost“. For more information, follow this link: OMCLPBoost.
My Personal Homepage and Blog
I released the code for one of my CVPR 2010 papers, “Online Multi-Class LPBoost“. For more information, follow this link: OMCLPBoost.
I together with other colleagues got three papers accepted at CVPR 2010.
Flymake is a generic syntax checker for Emacs. Its combination with PyFlakes which is a syntax checker for python makes it a perfect setting for Python programming in Emacs. Here are the steps to make it to work:
1) Install PyFlakes:
sudo easy_install pyflakes
sudo apt-get install pyflakes
2) Install Flymake:
3) Copy the following to your “init.el” file, which is again located under your Emacs folder (e.g. “~/.emacs.d/init.el”):
;;===== PyFlakes
;; code checking via pyflakes+flymake
(when (load "flymake" t)
(defun flymake-pyflakes-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
(list "pyflakes" (list local-file))))
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pyflakes-init)))
(add-hook 'find-file-hook 'flymake-find-file-hook)
We are organizing a tutorial on “Semi-Supervised Learning in Vision” at CVPR 2010. For more information, refer to this page.