One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| """ | |
| Multiclass SVMs (Crammer-Singer formulation). | |
| A pure Python re-implementation of: | |
| Large-scale Multiclass Support Vector Machine Training via Euclidean Projection onto the Simplex. | |
| Mathieu Blondel, Akinori Fujino, and Naonori Ueda. | |
| ICPR 2014. | |
| http://www.mblondel.org/publications/mblondel-icpr2014.pdf | |
| """ |
| $('table.arrow-nav').keydown(function(e){ | |
| var $table = $(this); | |
| var $active = $('input:focus,select:focus',$table); | |
| var $next = null; | |
| var focusableQuery = 'input:visible,select:visible,textarea:visible'; | |
| var position = parseInt( $active.closest('td').index()) + 1; | |
| console.log('position :',position); | |
| switch(e.keyCode){ | |
| case 37: // <Left> | |
| $next = $active.parent('td').prev().find(focusableQuery); |