diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..bf94b9f --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,38 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..7b544a4 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/udlbook.iml b/.idea/udlbook.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/udlbook.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index acf36d7..40102ab 100644 --- a/index.html +++ b/index.html @@ -1,160 +1,376 @@ -

Understanding Deep Learning

-by Simon J.D. Prince -
-To be published by MIT Press Dec 5th 2023.
+ + + + + udlbook + + -front cover + + +
+

Resources for instructors

+

Instructor answer booklet available with proof of credentials via MIT Press.

+

Figures in PDF (vector) / SVG (vector) / Powerpoint (images): +

-

Download draft PDF

+ Instructions for editing figures / equations can be found here. -Draft PDF Chapters 1-21
2023-10-13. CC-BY-NC-ND license -
- download stats shield -
- +

Resources for students

-

Table of contents

- +

Answers to selected questions: PDF +

+

Python notebooks: (Early ones more thoroughly tested than later ones!)

- -

Resources for instructors

- -

Instructor answer booklet available with proof of credentials via MIT Press

- -

Figures in PDF (vector) / SVG (vector) / Powerpoint (images): - - - -Instructions for editing figures / equations can be found here.

- -

Resources for students

- -

Answers to selected questions: PDF

-

Python notebooks: (Early ones more thoroughly tested than later ones!)

- - + -
-

Citation:

-

+    
+

Citation

+

  @book{prince2023understanding,
  author = "Simon J.D. Prince",
  title = "Understanding Deep Learning",
@@ -162,4 +378,6 @@ Instructions for editing figures / equations can be found 
+
+
+ \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..096c4d3 --- /dev/null +++ b/style.css @@ -0,0 +1,23 @@ +body { + font-size: 17px; + margin: 2% 10%; +} + +#head { + display: flex; + flex-direction: row; + flex-wrap: wrap-reverse; + justify-content: space-between; + width: 100%; +} + +#cover { + justify-content: center; + display: flex; + width: 30%; +} + +#cover img { + width: 100%; + height: min-content; +} \ No newline at end of file