-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (58 loc) · 2.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
title: Home
layout: top
---
{% include cs60050_head.html %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<h2>Overview</h2>
<p>
CS 60030 is a three credit running from
July 18th through November 27, 2016.
</p>
<p>
There are two important dates where the registrar is concerned:
</p>
<ul>
<li> Last day to add: July 27th, 2016 </li>
<li> Last day to drop: July 27th, 2016 </li>
</ul>
<p>
The goal of this course is to provide you with a high-level introduction
to the vast umbrella of learning algorithms, called Machine Learning.
Starting from probabilistic approaches to pattern recognition, to
the state-of-art neural network algorithms, the course aims to
introduce and motivate the increasing relevance of Machine Learning
algorithms from theoy to practice.
</p>
<p>
As with any course, regardless of the subject, you do not really learn
something until you sit down and try it out yourself. The lecture and
assignments are designed with this in mind — you should expect to learn
the material by interacting with it directly. The course material is
designed assuming you have no prior experience developing of Machine
Learning, but does assume knowledge of Probability and Statistic,
Programming and Data Structures. You are expected to put in an
appropriate amount of effort to complete the assignments.
Ultimately, what you put into the course is what
you will get out of it.
</p>
<!-- <div class="media">
<a class="pull-left" href="#">{% include github_education.html %}</a>
<div class="media-body">
We gratefully acknowledge GitHub Education for an enabling the use
of private repositories in support of this course.
</div>
</div> -->
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<h2><a href="posts.html">Posts</a></h2>
{% for post in site.posts limit:10 %}
<p class="hanging-indent">
<strong>{{ post.date | date_to_string }}</strong> »
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt }}
{% endfor %}
<a class="btn" href="posts.html">All posts »</a>
</div>
</div>