This repository has been archived by the owner on Sep 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
378 changed files
with
6,368 additions
and
3,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Semantic Parser | ||
=============== | ||
|
||
Semantic parser is used to translate text representation into formal language representation. The aim is to be able to process user utterances and react upon them. | ||
|
||
roboy_parser is based on [SEMPRE](https://nlp.stanford.edu/software/sempre/). It is currently being modified to fulfill Roboy Dialog system needs. | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
In order to use semantic parser, you need to clone roboy_parser repository:: | ||
git clone https://github.com/Roboy/roboy_parser | ||
|
||
navigate to created repository:: | ||
cd roboy_parser | ||
|
||
build it:: | ||
ant freebase | ||
|
||
and run it:: | ||
./quick_start [options] | ||
|
||
|
||
Implementation | ||
-------------- | ||
|
||
roboy_parser is | ||
|
||
|
||
Functionalities | ||
""""""""""""""" | ||
|
||
|
||
Usage | ||
----- | ||
|
||
Options | ||
""""""" | ||
|
||
Options | ||
""""""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version='1.0' encoding='UTF-8' standalone='no'?> | ||
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.11"> | ||
<compounddef id="_abstract_value_8java" kind="file" language="Java"> | ||
<compoundname>AbstractValue.java</compoundname> | ||
<innerclass refid="interfaceroboy_1_1context_1_1_abstract_value" prot="public">roboy::context::AbstractValue</innerclass> | ||
<innernamespace refid="namespaceroboy_1_1context">roboy::context</innernamespace> | ||
<briefdescription> | ||
</briefdescription> | ||
<detaileddescription> | ||
</detaileddescription> | ||
<programlisting> | ||
<codeline lineno="1"><highlight class="keyword">package<sp/></highlight><highlight class="normal">roboy.context;</highlight></codeline> | ||
<codeline lineno="2"><highlight class="normal"></highlight></codeline> | ||
<codeline lineno="7" refid="interfaceroboy_1_1context_1_1_abstract_value" refkind="compound"><highlight class="keyword">public</highlight><highlight class="normal"><sp/></highlight><highlight class="keyword">interface<sp/></highlight><highlight class="normal"><ref refid="interfaceroboy_1_1context_1_1_abstract_value" kindref="compound">AbstractValue</ref><V><sp/>{</highlight></codeline> | ||
<codeline lineno="8"><highlight class="normal"><sp/><sp/><sp/><sp/>V<sp/>getValue();</highlight></codeline> | ||
<codeline lineno="9"><highlight class="normal"></highlight></codeline> | ||
<codeline lineno="10"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keywordtype">void</highlight><highlight class="normal"><sp/>updateValue(V<sp/>key);</highlight></codeline> | ||
<codeline lineno="11"><highlight class="normal">}</highlight></codeline> | ||
</programlisting> | ||
<location file="/home/roboy/cognition_ws/src/roboy_cognition/roboy_dialog/src/main/java/roboy/context/AbstractValue.java"/> | ||
</compounddef> | ||
</doxygen> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version='1.0' encoding='UTF-8' standalone='no'?> | ||
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.11"> | ||
<compounddef id="_abstract_value_history_8java" kind="file" language="Java"> | ||
<compoundname>AbstractValueHistory.java</compoundname> | ||
<innerclass refid="interfaceroboy_1_1context_1_1_abstract_value_history" prot="public">roboy::context::AbstractValueHistory</innerclass> | ||
<innernamespace refid="namespaceroboy_1_1context">roboy::context</innernamespace> | ||
<briefdescription> | ||
</briefdescription> | ||
<detaileddescription> | ||
</detaileddescription> | ||
<programlisting> | ||
<codeline lineno="1"><highlight class="keyword">package<sp/></highlight><highlight class="normal">roboy.context;</highlight></codeline> | ||
<codeline lineno="2"><highlight class="normal"></highlight></codeline> | ||
<codeline lineno="3"><highlight class="normal"></highlight><highlight class="keyword">import</highlight><highlight class="normal"><sp/>java.util.Map;</highlight></codeline> | ||
<codeline lineno="4"><highlight class="normal"></highlight></codeline> | ||
<codeline lineno="9" refid="interfaceroboy_1_1context_1_1_abstract_value_history" refkind="compound"><highlight class="keyword">public</highlight><highlight class="normal"><sp/></highlight><highlight class="keyword">interface<sp/></highlight><highlight class="normal"><ref refid="interfaceroboy_1_1context_1_1_abstract_value_history" kindref="compound">AbstractValueHistory</ref><K,<sp/>V><sp/></highlight><highlight class="keyword">extends</highlight><highlight class="normal"><sp/><ref refid="interfaceroboy_1_1context_1_1_abstract_value" kindref="compound">AbstractValue</ref><V><sp/>{</highlight></codeline> | ||
<codeline lineno="10"><highlight class="normal"><sp/><sp/><sp/><sp/>Map<K,<sp/>V><sp/>getLastNValues(</highlight><highlight class="keywordtype">int</highlight><highlight class="normal"><sp/>n);</highlight></codeline> | ||
<codeline lineno="11"><highlight class="normal">}</highlight></codeline> | ||
</programlisting> | ||
<location file="/home/roboy/cognition_ws/src/roboy_cognition/roboy_dialog/src/main/java/roboy/context/AbstractValueHistory.java"/> | ||
</compounddef> | ||
</doxygen> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.