ClalisToneEmotional のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- ClalisToneEmotional へ行く。
- 1 (2016-10-13 (木) 23:05:47)
ClalisToneEmotional†
概要†
「Clalis 感情付与」と「Clalis 口調変換」の合わせ技です。
指定された変換ファイルを元に、口調変換します。
さらに単語単位に分割し、単語ごとの感情と感情レベルを付与して返します。
口調変換については「Clalis 口調変換」、
感情付与については「Clalis 感情付与」を御覧ください。
デモフォーム†
以下のページでAPIを試すことが出来ます。
APIリファレンス†
SOAP†
- 引数
sentence
toneFileUrl
- POST
https://liplis.mine.nu/clalis/v30/Soap/Clalis.asmx/clalisToneEmotional
sentence=string
toneFileUrl=string
- XML名前空間
https://liplis.mine.nu/XMLSchema
- 出力フォーマット
XML
POST TO XML†
- 引数
sentence
toneFileUrl
- POST
https://liplis.mine.nu/Clalis/v30/Post/Xml/clalisToneEmotional.aspx
sentence=string
toneFileUrl=string
- XML名前空間
なし
- 出力フォーマット
XML
POST TO JSON†
- 引数
sentence
toneFileUrl
- POST
https://liplis.mine.nu/Clalis/v30/Post/Json/clalisToneEmotional.aspx
sentence=string
toneFileUrl=string
- 出力フォーマット
JSON
REST TO XML†
- 引数
sentence
toneFileUrl
- XML名前空間
なし
- 出力フォーマット
XML
REST TO JSON†
- 引数
sentence
toneFileUrl
- 出力フォーマット
JSON
出力フォーマット†
要求方法によって出力フォーマットが異なります。
フォーマットの種類は以下のとおりです。
XMLフォーマット https://liplis.mine.nu/XMLSchema 名前空間†
#sh(xml){{
<?xml version="1.0" encoding="utf-8"?>
<resEmotional xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://liplis.mine.nu/XMLSchema">
<resWordList>
<msgLeafAndEmotion>
<name>string</name>
<emotion>int</emotion>
<point>int</point>
</msgLeafAndEmotion>
<msgLeafAndEmotion>
<name>string</name>
<emotion>int</emotion>
<point>int</point>
</msgLeafAndEmotion>
</resWordList>
</resEmotional>
}}
XMLフォーマット†
#sh(xml){{
<?xml version="1.0" encoding="utf-8"?>
<resEmotional xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<resWordList>
<msgLeafAndEmotion>
<name>string</name>
<emotion>int</emotion>
<point>int</point>
</msgLeafAndEmotion>
<msgLeafAndEmotion>
<name>string</name>
<emotion>int</emotion>
<point>int</point>
</msgLeafAndEmotion>
</resWordList>
</resEmotional>
}}
JSONフォーマット†
#sh{{
{"resWordList":
[
{
"emotion":int,
"name":"string",
"point":int
},
{
"emotion":int,
"name":"string",
"point":int
}
]
}
}}