Difference between revisions of "2019WinterTeam1"
Line 1: | Line 1: | ||
Inspired by [https://guitar.ucsd.edu/maeece148/index.php/2018SpringTeam6 2018Spring Team6's project]Team 1 decided to train an autonomous car that could run commands using voice recognition. | |||
== The Team == | == The Team == | ||
=== Team Members === | === Team Members === | ||
Line 14: | Line 15: | ||
==The Project: Voice Recognition Using Alexa Skills Developer Console == | ==The Project: Voice Recognition Using Alexa Skills Developer Console == | ||
Although our project idea was inspired by [https://guitar.ucsd.edu/maeece148/index.php/2018SpringTeam6 2018SpringTeam6], we did some research and found an easier way to make our Donkey Car successfully recognize commands: using Amazon's existing voice recognition software, we were able to organize our commands into categories, called ''intents'', and give the program different potential commands, or ''utterances'' that a user may call. | Although our project idea was inspired by [https://guitar.ucsd.edu/maeece148/index.php/2018SpringTeam6 2018SpringTeam6], we did some research and found an easier way to make our Donkey Car successfully recognize commands: using Amazon's existing voice recognition software, we were able to organize our commands into categories, called ''intents'', and give the program different potential commands, or ''utterances'' that a user may call. Additionally, we had to modify the vehicle's code to make it both receive and respond to said commands in a timely manner. | ||
=== | === Structure === | ||
Our skill was divided into several intents, each of which had then at least one slot with two possible values: | |||
* GPPIO (General Purpose Input Output) Intent: Turns lights on car on or off | |||
** Status slot: on/off | |||
* Drive Intent: Starts and stops the car | |||
** Drive status slot: go/stop | |||
** Time Intent: Length of action | |||
* Orientation Intent: Turns the car around | |||
** Orientation slot: left/right |
Revision as of 20:42, 10 March 2019
Inspired by 2018Spring Team6's projectTeam 1 decided to train an autonomous car that could run commands using voice recognition.
The Team
Team Members
- Michael Cornejo, 5th year Physics student
- Steven Cotton, 4th year Electrical Engineering student
- Jared Blaine, Master student in ECE
- Laura Morejón Ramírez, 3rd year Aerospace Engineering student
Objectives
Team 1's main goals were to build a 1/10 scale vehicle that could reliably drive on its own on two different pre-designed tracks as well as respond to a collection of commands that it would identify using voice recognition. .
The Car: Donkey
Using the provided DonkeyCar framework, and training our car
Overview
Autonomy Kit
The Project: Voice Recognition Using Alexa Skills Developer Console
Although our project idea was inspired by 2018SpringTeam6, we did some research and found an easier way to make our Donkey Car successfully recognize commands: using Amazon's existing voice recognition software, we were able to organize our commands into categories, called intents, and give the program different potential commands, or utterances that a user may call. Additionally, we had to modify the vehicle's code to make it both receive and respond to said commands in a timely manner.
Structure
Our skill was divided into several intents, each of which had then at least one slot with two possible values:
- GPPIO (General Purpose Input Output) Intent: Turns lights on car on or off
- Status slot: on/off
- Drive Intent: Starts and stops the car
- Drive status slot: go/stop
- Time Intent: Length of action
- Orientation Intent: Turns the car around
- Orientation slot: left/right