|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2173 ] | SNeRG - the SNePS Research Group |
---|---|
Organisation name | SNeRG - the SNePS Research Group |
Short name or acronym | SNeRG - the SNePS Research Group |
Organisation type | Center |
Activity type | Speech technology |
Address | State University of New York, 226 Bell Hall |
Postal Code | 14260-2000 |
City | Buffalo, NY |
Country | United States |
Phone | + |
Fax | + |
Organisation URL | http://www.cse.buffalo.edu/sneps/index.html |
Logo | Description |
![]() |
The long-term goal of The SNePS Research Group is the design and construction of a natural-language-using computerized cognitive agent, and carrying out the research in artificial intelligence, computational linguistics, and cognitive science necessary for that endeavor. The three-part focus of the group is on knowledge representation, reasoning, and natural-language understanding and generation. The group is widely known for its development of the SNePS knowledge representation/reasoning system, and Cassie, its computerized cognitive agent. |
Contact | |
Name | Professor Stuart C. Shapiro |
Function | Director |
Department | |
shapiro_(on)_cse.buffalo.edu | |
Phone | + +1 716 645 3180 (ext. 125) |
Fax | + +1 716 645 3464 |
![]() |
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" |