|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2838 ] | Machine Learning Lab - Hebrew University |
---|---|
Organisation name | Machine Learning Lab - Hebrew University |
Short name or acronym | Machine Learning Lab - Hebrew University |
Organisation type | Center |
Activity type | Speech technology |
Address | |
Postal Code | |
City | |
Country | Israel |
Phone | + |
Fax | + |
Organisation URL | http://www.cs.huji.ac.il/labs/learning/lab_page.html |
Logo | Description |
![]() |
Machine learning offers an alternative approach to some classical AI problems, such as pattern recognition, and relies mainly on statistical modeling and self organization. Our main efforts are focused on developing fundamental understanding of computational learning and computational neuroscience, with applications to man-machine communication ( handwriting, speech, natural language modeling), motor control (robotics), vision , neurophysiology, computational biology, and even cognitive science. We have close contacts with many other groups at the Hebrew university. In particular, the multidiscplinary Center for Neural Computation, the laboratory for higher brain function at the Haddasa Medical School, the Department of Molecular Genetics and Biotechnology, Faculty of Medicine, the institute of life sciences, Racah institute of physics, and the school of musicology. Our current projects center around the following large topics: + Learning in human-machine interaction + Natural language interface to the WWW + Statistical analysis of neurophysiological data + Self-organization of proteins + Nonlinear acoustic signal processing |
Contact | |
Name | Nir Friedman |
Function | |
Department | |
nir_(on)_cs.huji.ac.il | |
Phone | + +972 2 658 4720 |
Fax | + +972 2 675 8938 |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |