CS 448 Lecture - Introduction, Perceptrons
Topics for today:
- Introductions/administrivia
- First day quiz
- Survey
- Intro page
- *another* first day quiz!
- Education and accreditation
- Machine learning; why? how?
- Is this artificial intelligence?
- "A system that will make the same mistake forever is by definition not intelligent" -- JHH
- Two reasons to model natural learning systems
- Leveraging the only learning systems we know
- A means to understand cognition and learning
- Some Quick Java comments
- Simplify the code by writing classes/building class hierarchies
- Habit is powerful. Simplify your life by making every class similar. Every (well, almost every) class should have:
- accessors ("why?")
- public String toString()
- an initializing constructor
And here is a simple way to get those...
- Lab 0 for Thursday