-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (35 loc) · 1.24 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
---
layout: default
---
<center>
<h1>Reading Group - 2017 Fall Semester</h1>
<h2>Machine Learning - Matrix Analysis</h2>
</center>
<h2>Time & Location</h2>
<li>4 pm every Sunday</li>
<h2>Reference Books</h2>
<li>Kevin P. Murphy. Machine Learning - A Probabilistic Perspective. MIT Press, 2012. </li>
<li>Christopher M. Bishop. Pattern Recognition and Machine Learning. Springer, 2013. </li>
<li>Zhang, Xian-Da. Matrix analysis and applications. Cambridge University Press, 2017. </li>
<h2>Schedule & Notes</h2>
<CENTER><TABLE BORDER CELLPADDING=4 WIDTH="95%" >
<TR BGCOLOR="#666666" TEXT="#000000">
<TH WIDTH="8%"><FONT COLOR="#FBFFFF">Date</FONT></TH>
<TH WIDTH="15%"><FONT COLOR="#FBFFFF">Track</FONT></TH>
<TH WIDTH="30%"><FONT COLOR="#FBFFFF">Content</FONT></TH>
<TH WIDTH="30%"><FONT COLOR="#FBFFFF">Reference</FONT></TH>
<TH WIDTH="12%"><FONT COLOR="#FBFFFF">Notes</FONT></TH>
</TR>
{% for data in site.data.notes %}
<TR>
<TD ALIGN=CENTER>{{data.date}}</TD>
<TD ALIGN=CENTER>{{data.track}}</TD>
<TD ALIGN=CENTER>{{data.content}}</TD>
<TD ALIGN=CENTER>{{data.reference}}</TD>
{% if data.url %}
<TD ALIGN=CENTER><a href="{{site.baseurl}}/{{data.url}}" target="_blank">Note</a></TD>
{% else %}
<TD ALIGN=CENTER></TD>
{% endif %}
</TR>
{% endfor %}