Skip to content

Commit

Permalink
updating website
Browse files Browse the repository at this point in the history
  • Loading branch information
mariakakis committed Jul 22, 2023
1 parent 19008ba commit 70bcacc
Show file tree
Hide file tree
Showing 97 changed files with 363 additions and 6,782 deletions.
6 changes: 3 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: C4M Course Webpage
subtitle: Fall 2022 - Winter 2023
subtitle: Fall 2023 - Winter 2024
description: >- # this means to ignore newlines until "baseurl:"
Course Website for C4M 2022 to 2023
Course Website for C4M 2023 to 2024
author: Alex Mariakakis
email: mariakakis@cs.toronto.edu
avatar: assets/images/avatar.jpg
Expand All @@ -59,4 +59,4 @@ google_analytics:

# The following settings are NECESSARY for the Prologue theme to run:
remote_theme: chrisbobbe/jekyll-theme-prologue
collections: [phase1lectures, phase2lectures, phase3lectures]
collections: [lecturesfall, lectureswinter, review]
44 changes: 44 additions & 0 deletions _includes/review_table.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<div style="overflow-x:auto;">
<table>
<colgroup>
<col style="width: 50%;">
<col style="width: 50%;">
</colgroup>
<thead>
<tr>
<th>Materials</th>
<th>Exercises</th>
</tr>
</thead>
<tbody>
{% assign sorted_lectures = include.lectures | sort:'index' %}
{% for lecture in sorted_lectures %}
<!-- Extract the attributes of the lecture -->
{% assign title = lecture.title %}
{% assign date = lecture.date %}
{% assign materials = lecture.materials %}
{% assign assignment = lecture.assignment %}
<tr>
<!-- Materials -->
<td>
<b>{{ title }}</b>
<ul>
{% for material in materials %}
<li>
{{ material.topic }}
{% include files_list.html files=material.files %}
</li>
{% endfor %}
</ul>
</td>
<!-- Exercises -->
<td>
{% if assignment.size > 0 %}
<b>{{ assignment.text }}</b>
{% include files_list.html files=assignment.files %}
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
25 changes: 25 additions & 0 deletions _lecturesfall/1_tabular.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: "Introduction and Tabular Data"
index: 1
date: 2023-11-01
materials:
- topic: "Motivation"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/1_tabular/1a_motivation.ipynb
- topic: "Numpy"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/1_tabular/1b_numpy.ipynb
- topic: "Pandas"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/1_tabular/1c_pandas.ipynb
assignment:
text: "Materials in progress"
due_date: 2023-11-15 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
37 changes: 37 additions & 0 deletions _lecturesfall/2_timeseries_timedomain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: "Time Series Data – Time Domain"
index: 2
date: 2023-11-15
materials:
- topic: "Motivation"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2a_motivation.ipynb
- topic: "Matplotlib"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2b_matplotlib.ipynb
- topic: "Handling Time"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2c_handling_time.ipynb
- topic: "Data Sampling"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2d_data_sampling.ipynb
- topic: "Data Windowing"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2e_data_windowing.ipynb
- topic: "Time-Domain Features"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/2_timeseries_timedomain/2f_timedomain_features.ipynb
assignment:
text: "Materials in progress"
due_date: 2023-11-22 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
41 changes: 41 additions & 0 deletions _lecturesfall/3_timeseries_freqdomain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: "Time Series Data – Frequency Domain"
index: 3
date: 2023-11-22
materials:
- topic: "Motivation"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3a_motivation.ipynb
- topic: "Trigonometry"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3b_trigonometry.ipynb
- topic: "Fast Fourier Transform"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3c_fast_fourier_transform.ipynb
- topic: "Spectrograms"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3d_spectrograms.ipynb
- topic: "Frequency-Domain Features"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3e_spectrograms.ipynb
- topic: "Signal Noise"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3f_signal_noise.ipynb
- topic: "Digital Filters"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/3_timeseries_frequencydomain/3g_digital_filters.ipynb
assignment:
text: "Materials in progress"
due_date: 2023-12-06 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
41 changes: 41 additions & 0 deletions _lecturesfall/4_images.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: "Image Data"
index: 4
date: 2023-12-06
materials:
- topic: "Motivation"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4a_motivation.ipynb
- topic: "Colors"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4b_colors.ipynb
- topic: "Shapes"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4c_shapes.ipynb
- topic: "Image Manipulation"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4d_image_manipulation.ipynb
- topic: "Image Kernels"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4e_image_kernels.ipynb
- topic: "Thresholding"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4f_thresholding.ipynb
- topic: "Outlines"
files:
- type: "colab"
url: https://colab.research.google.com/github/C4M-UofT/C4M-UofT.github.io/blob/master/lectures/fall/4_images/4g_outlines.ipynb
assignment:
text: "Materials in progress"
due_date: 2024-01-17 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/10_deeplearning_cnn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Deep Learning – Convolutional Neural Networks"
index: 10
date: 2024-03-27
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-04-10 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/5_review.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Review of Digital Signal Processing"
index: 5
date: 2024-01-17
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-01-31 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/6_mlworkflow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Machine Learning Terminology and Workflow"
index: 6
date: 2024-01-31
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-02-14 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/7_ml_classification.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Machine Learning – Classification"
index: 7
date: 2024-02-14
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-02-21 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/8_ml_regression.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Machine Learning – Regression"
index: 8
date: 2024-02-21
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-03-06 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
14 changes: 14 additions & 0 deletions _lectureswinter/9_deeplearning_fcn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "Deep Learning – Fully Connected Networks"
index: 9
date: 2024-03-06
materials:
- topic: "Materials in progress"
assignment:
text: "Materials in progress"
due_date: 2024-03-27 12:00 PM
submission_link: TBD
files:
- type: "colab"
url: TBD
---
18 changes: 0 additions & 18 deletions _phase2lectures/2_document_retrieval.md

This file was deleted.

32 changes: 0 additions & 32 deletions _phase2lectures/3_epidemic_modeling.md

This file was deleted.

22 changes: 0 additions & 22 deletions _phase2lectures/4_physionet.md

This file was deleted.

5 changes: 0 additions & 5 deletions _phase2lectures/5_physionet.md

This file was deleted.

5 changes: 0 additions & 5 deletions _phase2lectures/6_guest_lectures.md

This file was deleted.

Loading

0 comments on commit 70bcacc

Please sign in to comment.