Androidでポケットフィンクスを使用しています。.gram
また、あるファイルのルールを別のファイルにインポートすることも、.gram
を指定してルールを使用することString
もできましたが、2 つを組み合わせることができないようです。つまり、文字列ベースの文法からファイル ベースの文法をインポートすることはできません。Failed to find grammar
エラーが発生し続けます。
文法を文字列として指定する場合:
private SpeechRecognizer mPsRecognizer;
//...
final StringGrammar sg = settings.getStringGrammar();
mPsRecognizer.getDecoder().setJsgfString(sg.getName(), sg.getString());
文字列は次のようなものです。
name: "initial_grammar",
string: "#JSGF V1.0;\n"
+ "\n"
+ "grammar initial_grammar;\n"
+ "\n"
+ "import <digits.digits>;\n"
+ "import <actions.r_actions>;\n"
+ "import <help.r_help>;\n"
+ "\n"
+ "public <initial_grammar>\n"
+ " = <r_actions>\n"
+ " | <r_help>\n"
+ " ;");
私は得る
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar digits.gram
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar actions.gram
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar help.gram
com.sample.vr.commands I/cmusphinx: INFO: jsgf.c(691): Defined rule: PUBLIC <initial_step.initial_grammar>
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 338: Undefined rule in RHS: <initial_step.digits>
相対的に検索するベースファイルがないため、これはどういうわけか予想されます。
私が試したこと:1)完全なパッケージ名を使用し、2)完全なパスを使用します(ポケットフィンクス独自のアセット同期ユーティリティから取得したもの)。
パッケージ名の使用import
パスを
変更すると
//...
+ "import <com.sample.vr.commands/files/sync/actions.r_actions>;\n"
+ "import <com.sample.vr.commands/files/sync/help.r_help>;\n"
//...
私は得る
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar com/sample/vr/commands/files/sync/help.gram
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar com/sample/vr/commands/files/sync/actions.gram
フルパス付き
#JSGF V1.0;
grammar initial_step;
import </storage/emulated/0/Android/data/com.sample.vr.commands/files/sync/actions.r_actions>;
import </storage/emulated/0/Android/data/com.sample.vr.commands/files/sync/help.r_help>;
public <initial_grammar>
= <r_actions>
| <r_help>
;
次のエラーが表示されます (パッケージ部分が別のディレクトリに変換されたことに注意してください)。
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar /storage/emulated/0/Android/data/com/sample/vr/commands/files/sync/help.gram
com.sample.vr.commands E/cmusphinx: ERROR: "jsgf.c", line 775: Failed to find grammar /storage/emulated/0/Android/data/com/sample/vr/commands/files/sync/actions.gram
com.sample.vr.commands I/cmusphinx: INFO: jsgf.c(691): Defined rule: PUBLIC <initial_step.initial_grammar>
pocketphinx のソースでは、ドットをスラッシュに置き換えていることがわかります。
/* Construct a filename. */
for (c = path; *c; ++c)
if (*c == '.')
*c = '/';
strcat(path, ".gram");
newpath = path_list_search(jsgf->searchpath, path);
if (newpath == NULL) {
E_ERROR("Failed to find grammar %s\n", path);
ckd_free(path);
return NULL;
}
インポートしようとしているファイルの場所を pocketphinx-android に知らせるにはどうすればよいですか? 関数SpeechRecognizer
もにもありませんDecoder
。文法ファイルを探す場所を構成で指定する方法があるのではないかと考えていますが、それが見つからないようです。SpeechRecognizerSetup
またはConfig
?にパラメータを追加します。または、Config/Setup オブジェクトに文字列パラメーターとして追加できる、ポケットスフィンクスのコマンド ライン パラメーターはありますか?