ClalisToneEmotional

概要

「Clalis 感情付与」と「Clalis 口調変換」の合わせ技です。

指定された変換ファイルを元に、口調変換します。
さらに単語単位に分割し、単語ごとの感情と感情レベルを付与して返します。

口調変換については「Clalis 口調変換」、
感情付与については「Clalis 感情付与」を御覧ください。
 

デモフォーム

以下のページでAPIを試すことが出来ます。

ClalisApi

 
 

APIリファレンス

SOAP

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     XML
     
     

POST TO XML

  • 引数
      sentence
      toneFileUrl
  • XML名前空間
     なし
  • 出力フォーマット
     XML
     
     

POST TO JSON

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     JSON
     
     

REST TO XML

  • 引数
      sentence
      toneFileUrl
  • XML名前空間
     なし
  • 出力フォーマット
     XML

 

REST TO JSON

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     JSON
     
     

出力フォーマット

要求方法によって出力フォーマットが異なります。
フォーマットの種類は以下のとおりです。

XMLフォーマット https://liplis.mine.nu/XMLSchema 名前空間

 <?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フォーマット

 <?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フォーマット

  {"resWordList":
   [
    {
     "emotion":int,
     "name":"string",
     "point":int
    },
    {
     "emotion":int,
     "name":"string",
     "point":int
    }
   ]
  }