검색결과 리스트
AI/info에 해당되는 글 3건
- 2017.03.07 AVS 가 뭐지?
- 2017.02.20 Google API.AI
- 2017.02.17 About Alexa
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
what is AVS?
AVS는 아마존의 Alexa Voice Service이다.
Cloud를 기반으로 스킬셋을 구현하여 TTS나 STT 등의 인터페이스를 제공하며 third-party에서도 쉽게 사용할 수가 있다.
skill set등이 점점 늘어나고 있는 추세이다. IoT도 당근 가능! 또한 Streaming Media 서비스, Localization도 제공 한다.
대충 위의 기능들을 나열할 수 있을 것 같다.
public class AVSController implements
참조 : https://developer.amazon.com/public/solutions/alexa/alexa-voice-service/reference/speechrecognizer
header 와 payload가 눈의 띈다.
AVS Api
정리하기 너무 방대해서 하나씩 프린트해서 읽어보는 중입니다~정리는 패쑤~~~ㅋㅋ
'AI > info' 카테고리의 다른 글
AVS 가 뭐지? (0) | 2017.03.07 |
---|---|
Google API.AI (0) | 2017.02.20 |
About Alexa (0) | 2017.02.17 |
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
https://docs.api.ai/docs/key-concepts
API.AI is built on a number of concepts. It’s good to understand what they are before trying anything hands-on.
Agents correspond to applications. Once you train and test an agent, you can integrate it with your app or device.
Entities represent concepts that are often specific to a domain as a way of mapping natural language phrases to canonical phrases that capture their meaning.
Intents represent a mapping between what a user says and what action should be taken by your software.
Actions correspond to the steps your application will take when specific intents are triggered by user inputs. An action may have parameters for specifying detailed information about it.
Contexts are strings that represent the current context of the user expression. This is useful for differentiating phrases which might be vague and have different meaning depending on what was spoken previously.
'AI > info' 카테고리의 다른 글
AVS 가 뭐지? (0) | 2017.03.07 |
---|---|
Google API.AI (0) | 2017.02.20 |
About Alexa (0) | 2017.02.17 |
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
ALEXA SKILLS
ALEXA SKILLS
intents / slot
intent와 매칭되는 질문들을 목록으로 만들어 제공.
SKILLS를 만들 때 고려해야 하는것?
타입고려 : 예를 들어 커스텀 스킬은 피자 주문 같은것이고 스마트홈 스킬은 불켜고 끄고 하는 것. 브리핑 스킬은 신문을 읽어주거나 하는 것.
시스템과 유저가 상호작용하는 경우 - Request가 덜 채워져있으면 다시 질문하여 의도를 파악 한다.
'AI > info' 카테고리의 다른 글
AVS 가 뭐지? (0) | 2017.03.07 |
---|---|
Google API.AI (0) | 2017.02.20 |
About Alexa (0) | 2017.02.17 |