Skip to content

Commit

Permalink
feat(solutions-landing): added landing page + nav bar for all solutio…
Browse files Browse the repository at this point in the history
…n sketches
  • Loading branch information
chiragbharadwaj committed Dec 25, 2024
1 parent eb07620 commit 1714b6d
Show file tree
Hide file tree
Showing 16 changed files with 95 additions and 0 deletions.
9 changes: 9 additions & 0 deletions _assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ footer {
margin-bottom: 1em;
}

/* breadcrumbs: for the nav bar at the top of non-home pages */
nav.breadcrumbs {
margin-bottom: 1em;
}

/* headings: for the section titles, page titles, etc. */
h1 {
font-size: 160%;
Expand Down Expand Up @@ -245,6 +250,10 @@ img {
margin-right: auto;
display: block;
}
img.resize {
width: 4em;
margin-bottom: 1em;
}

/* sidebar: for navigating back to the home page */
.sidebar {
Expand Down
Binary file added _data/books/artin/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/axler/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/bishop/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/cookbook/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/esl/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/mlapp/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/pugh/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/rudin/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/sheldon/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/spivak/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _data/books/statsci/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions _layouts/landing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
layout: default
---

<nav class="breadcrumbs">
{% assign subpaths = page.path | split: '/' %}
{% if subpaths.last == 'index.md' %}
{% assign new_length = subpaths.size | minus: 1 %}
{% assign subpaths = subpaths | slice: 0, new_length %}
{% endif %}

[
{% assign curr_path = '' %}
{% for subpath in subpaths %}
{% assign path = subpath | remove: '.md' %}
{% if forloop.last %}
<b>{{ path }}</b>
{% else %}
{% assign curr_path = curr_path | append: '/' | append: subpath %}
<a href="{{ curr_path }}">{{ path }}</a>
{% endif %}
{% unless forloop.last %}
|
{% endunless %}
{% endfor %}
]
</nav>

{{content}}
Empty file added blogs/index.md
Empty file.
2 changes: 2 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ This site exists primarily to document my thoughts about mathematics, machine le

### Pedagogical expositions

- Axiomatic motivation of calculus
- Machine learning from scratch
- Practical lessons in ML
- Some solution sketches

I also track my progress with my hobbies and interests on some associated blogs.
Expand Down
55 changes: 55 additions & 0 deletions lectures/books/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
layout: landing
---

# Solution sketches to various texts

----

Here are some solutions to selected problems from several foundational texts in a variety of fields. These mostly represent my own progress through teaching myself a more rigorous foundation of the mathematics underpinning modern statistics and ML. I can only hope that they also provide valuable insights for others on this journey.

## Real analysis

||Name of work|Author|Solution sketches|
|---|---|---|
|![][pugh]{:.resize}|_Real Mathematical Analysis_|Charles Pugh|Forthcoming|
|![][rudin]{:.resize}|_Principles of Mathematical Analysis_|Walter Rudin|Forthcoming|
|![][spivak]{:.resize}|_Calculus on Manifolds_|Michael Spivak|Forthcoming|
|![][sheldon]{:.resize}|_Measure, Integration, and Real Analysis_|Sheldon Axler|Forthcoming|

## Abstract and linear algebra

||Name of work|Author|Solution sketches|
|---|---|---|
|![][artin]{:.resize}|_Algebra_|Michael Artin|Forthcoming|
|![][axler]{:.resize}|_Linear Algebra Done Right_|Sheldon Axler|Forthcoming|
|![][cookbook]{:.resize}|_The Matrix Cookbook_|Kaare Petersen, Michael Pedersen|Forthcoming|

## Probability and statistics

||Name of work|Author|Solution sketches|
|---|---|---|
|![][statsci]{:.resize}|_Probability and Statistics_|Ronald Walpole, Raymond Myers|Forthcoming|
|![][esl]{:.resize}|_Elements of Statistical Learning_|Trevor Hastie, Robert Tibshirani,<br> Jerome Friedman|Forthcoming|

## Machine learning

||Name of work|Author|Solution sketches|
|---|---|---|
|![][mlapp]{:.resize}|_Machine Learning: A Probabilistic Perspective_|Kevin Murphy|Forthcoming|
|![][bishop]{:.resize}|_Deep Learning: Foundations and Concepts_|Christopher Bishop|Forthcoming|

[pugh]: ../../_data/books/pugh/cover.jpg
[rudin]: ../../_data/books/rudin/cover.jpg
[spivak]: ../../_data/books/spivak/cover.jpg
[sheldon]: ../../_data/books/sheldon/cover.jpg

[artin]: ../../_data/books/artin/cover.jpg
[axler]: ../../_data/books/axler/cover.jpg
[cookbook]: ../../_data/books/cookbook/cover.png

[statsci]: ../../_data/books/statsci/cover.jpg
[esl]: ../../_data/books/esl/cover.jpg

[mlapp]: ../../_data/books/mlapp/cover.jpg
[bishop]: ../../_data/books/bishop/cover.jpg

0 comments on commit 1714b6d

Please sign in to comment.