Japanese Predicate Argument Structure Analyzer: SynCha

For impatient:

Web CGI demo is available: http://cl.naist.jp/syncha/

For programmers:

You can use XML-RPC to execute SynCha online. Sample code written in Perl is shown below:

#!/usr/bin/env perl
use XMLRPC::Lite;
 
my $in;
{
  local $/ = undef;
  $in = <>;
}

my $server = XMLRPC::Lite->proxy('http://cl.naist.jp/syncha/syncha.cgi');
my $call   = $server->call('SynCha.getParsed', $in);
print $call->result;

For expert:

Source code for SynCha can be obtained via CVS. Please refer to README after you download. Visit our ViewCVS page for accessing online.


Ryu Iida <ryu-i at cl dot cs dot titech dot ac dot jp>
Mamoru Komachi <komachi at is dot naist dot jp>
Computational Linguistics Lab.
Graduate School of Information Science
Nara Institute of Science and Technology