Skip to content

Latest commit

 

History

History
45 lines (25 loc) · 1.17 KB

README.md

File metadata and controls

45 lines (25 loc) · 1.17 KB

아래 사이트에 회원가입 후 본인의 Access key 적용 후 테스트 가능합니다.

https://picovoice.ai/

class Constants {
    companion object{

        const val ACCESS_KEY = /** your access key **/

        // [23/05/23] [YSI] Define intent name for communication.
        const val ACTION_VOICE_ASSISTANT_REQUEST = "com.volvo.assistanceandroid.request"
        const val ACTION_VOICE_ASSISTANT_RESULT = "com.volvo.assistanceandroid.result"

        // [23/05/23] [YSI] Define extra name for communication. Other app will get the request by this id.
        const val REQUEST = "request"

        // [23/05/23] [YSI] Result intent should be returned from other apps when finish the request.
        const val FAIL = 0
        const val SUCCESS = 1
    }
}

assistance-android

image

Flow

image

Data Augmentation

  • SR(Synonym Replacement)
  • RI,RD(Random Insertion, Random Deletion)
  • RS(Random Swap)