Skip to content

Commit 4d6f478

Browse files
committed
Add website
1 parent 6c279de commit 4d6f478

File tree

8 files changed

+78
-0
lines changed

8 files changed

+78
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "docs/jekyllbook"]
2+
path = docs/jekyllbook
3+
url = https://github.com/ebetica/jekyllbook

docs/404.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jekyllbook/404.html

docs/_config.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
permalink: pretty
2+
3+
# Setup
4+
title: 'Deep Learning'
5+
url: https://atcold.github.io/pytorch-Deep-Learning/
6+
baseurl: '/pytorch-Deep-Learning'
7+
homepage_title: Home
8+
default_lang: 'en'
9+
10+
# About/contact
11+
author:
12+
name: atcold
13+
url: https://twitter.com/alfcnz
14+
github:
15+
repo: https://github.com/atcold/pytorch-Deep-Learning/
16+
17+
# Custom vars
18+
version: dlsp20
19+
20+
src: "."
21+
default_theme: "ayu"
22+
23+
defaults:
24+
- scope:
25+
path: "" # an empty string here means all files in the project
26+
values:
27+
layout: "custom"
28+
29+
# For Maths
30+
markdown: kramdown
31+
32+
# To use hljs, disable the default highlighter
33+
kramdown:
34+
syntax_highlighter_opts:
35+
disable: true
36+
math_engine: null
37+
38+
exclude:
39+
- jekyllbook
40+
- en/index.md
41+
- vendor
42+
43+
################################### English ####################################
44+
# prologues:
45+
# - path: en/about.md
46+
chapters:

docs/_layouts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jekyllbook/_layouts/

docs/index.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
title: DEEP LEARNING
4+
author: Alfredo Canziani
5+
lang-ref: home
6+
---
7+
8+
**DS-GA 1008 · SPRING 2021 · [NYU CENTER FOR DATA SCIENCE](http://cds.nyu.edu/)**
9+
10+
| INSTRUCTORS | Yann LeCun & Alfredo Canziani |
11+
| LECTURES | Wednesday 9:30 – 11:30, Zoom |
12+
| PRACTICA | Tuesdays 9:30 – 10:30, Zoom |
13+
| FORUM | [r/NYU_DeepLearning](https://www.reddit.com/r/NYU_DeepLearning/) |
14+
| MATERIAL | [Notebooks 2020](https://github.com/Atcold/pytorch-Deep-Learning), [Notebooks 2021](https://github.com/Atcold/NYU-DLSP21) |
15+
16+
17+
## Description
18+
19+
This course concerns the latest techniques in deep learning and representation learning, focusing on supervised and unsupervised deep learning, embedding methods, metric learning, convolutional and recurrent nets, with applications to computer vision, natural language understanding, and speech recognition. The prerequisites include: [DS-GA 1001 Intro to Data Science](https://cds.nyu.edu/academics/ms-curriculum/) or a graduate-level machine learning course.
20+
21+
## Lectures
22+
23+
Most of the lectures are similar to the previous edition, nevertheless, some are brand new.
24+
I will try to make clear the difference.

docs/jekyllbook

Submodule jekyllbook added at bdfa5ba

docs/serve.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/usr/local/lib/ruby/gems/3.0.0/bin/jekyll serve --trace --baseurl '/NYU-DLSP21'

docs/static

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jekyllbook/static/

0 commit comments

Comments
 (0)