diff --git a/content/blog/aws-ai-league/ai-league-second-place.jpg b/content/blog/aws-ai-league/ai-league-second-place.jpg index 250b5a4..31fac18 100644 Binary files a/content/blog/aws-ai-league/ai-league-second-place.jpg and b/content/blog/aws-ai-league/ai-league-second-place.jpg differ diff --git a/content/blog/aws-ai-league/best-model.png b/content/blog/aws-ai-league/best-model.png index 6a24e98..9fc791f 100644 Binary files a/content/blog/aws-ai-league/best-model.png and b/content/blog/aws-ai-league/best-model.png differ diff --git a/content/blog/aws-ai-league/domain.png b/content/blog/aws-ai-league/domain.png index c5d0cc5..1b5054b 100644 Binary files a/content/blog/aws-ai-league/domain.png and b/content/blog/aws-ai-league/domain.png differ diff --git a/content/blog/aws-ai-league/finalists.png b/content/blog/aws-ai-league/finalists.png index 83c3d9b..7b22702 100644 Binary files a/content/blog/aws-ai-league/finalists.png and b/content/blog/aws-ai-league/finalists.png differ diff --git a/content/blog/aws-ai-league/hyperparameters.png b/content/blog/aws-ai-league/hyperparameters.png index 0be33b0..0ee850d 100644 Binary files a/content/blog/aws-ai-league/hyperparameters.png and b/content/blog/aws-ai-league/hyperparameters.png differ diff --git a/content/blog/aws-ai-league/leaderboard.png b/content/blog/aws-ai-league/leaderboard.png index f7e24b0..8e7a574 100644 Binary files a/content/blog/aws-ai-league/leaderboard.png and b/content/blog/aws-ai-league/leaderboard.png differ diff --git a/content/blog/aws-ai-league/overfit-model.png b/content/blog/aws-ai-league/overfit-model.png index 47f29c2..32ab495 100644 Binary files a/content/blog/aws-ai-league/overfit-model.png and b/content/blog/aws-ai-league/overfit-model.png differ diff --git a/content/blog/aws-ai-league/perf-metrics.png b/content/blog/aws-ai-league/perf-metrics.png index 063bf99..c9d1b47 100644 Binary files a/content/blog/aws-ai-league/perf-metrics.png and b/content/blog/aws-ai-league/perf-metrics.png differ diff --git a/content/blog/aws-ai-league/tuning-scores.png b/content/blog/aws-ai-league/tuning-scores.png index d20ef01..3908671 100644 Binary files a/content/blog/aws-ai-league/tuning-scores.png and b/content/blog/aws-ai-league/tuning-scores.png differ diff --git a/src/assets/images/exploding-head.png b/src/assets/images/exploding-head.png index c7ccbb5..f383417 100644 Binary files a/src/assets/images/exploding-head.png and b/src/assets/images/exploding-head.png differ diff --git a/src/assets/svg/binoculars.svg b/src/assets/svg/binoculars.svg index 52285aa..b478f72 100644 --- a/src/assets/svg/binoculars.svg +++ b/src/assets/svg/binoculars.svg @@ -1,21 +1 @@ - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/src/assets/svg/github.svg b/src/assets/svg/github.svg index 85451f1..3cdf15b 100644 --- a/src/assets/svg/github.svg +++ b/src/assets/svg/github.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/heart.svg b/src/assets/svg/heart.svg index e111db0..f832747 100644 --- a/src/assets/svg/heart.svg +++ b/src/assets/svg/heart.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/linkedin.svg b/src/assets/svg/linkedin.svg index 2215429..bcb585d 100644 --- a/src/assets/svg/linkedin.svg +++ b/src/assets/svg/linkedin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/rss.svg b/src/assets/svg/rss.svg index e867363..b2ba675 100644 --- a/src/assets/svg/rss.svg +++ b/src/assets/svg/rss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/twitter.svg b/src/assets/svg/twitter.svg index c257120..895a875 100644 --- a/src/assets/svg/twitter.svg +++ b/src/assets/svg/twitter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/components/header.js b/src/components/header.js deleted file mode 100644 index fa53666..0000000 --- a/src/components/header.js +++ /dev/null @@ -1,39 +0,0 @@ -import * as React from "react" -import { Link } from "gatsby" - -import Binoculars from "../assets/svg/binoculars.svg" -import Github from "../assets/svg/github.svg" -import Twitter from "../assets/svg/twitter.svg" -import Rss from "../assets/svg/rss.svg" -import Heart from "../assets/svg/heart.svg" -import LinkedIn from "../assets/svg/linkedin.svg" - -const Header = ({ siteTitle }) => { - return ( -
- - -

{siteTitle}

- -
- - - - - - - - - - - - - - - -
-
- ) -} - -export default Header \ No newline at end of file diff --git a/src/pages/index.js b/src/pages/index.js deleted file mode 100644 index 70939fb..0000000 --- a/src/pages/index.js +++ /dev/null @@ -1,88 +0,0 @@ -import * as React from "react" -import { Link, graphql } from "gatsby" - -import Layout from "../components/layout" -import Seo from "../components/seo" - -const BlogIndex = ({ data, location }) => { - const siteTitle = data.site.siteMetadata?.title || `Title` - const posts = data.allMarkdownRemark.nodes - - if (posts.length === 0) { - return ( - - -

- No blog posts found. -

-
- ) - } - - return ( - - -
    -
    -

    Hi, I'm Naveen 👋

    -
    Engineer, architect, and habitual tinkerer building highly performant systems then turning the scars into posts
    -
    -
    - {posts.map(post => { - const title = post.frontmatter.title || post.fields.slug - return ( -
  1. -
    -
    -

    - - {title} - -

    - {post.frontmatter.date} -
    -
    -

    -

    -
    -
  2. - ) - })} -
-
- ) -} - -export default BlogIndex - -export const pageQuery = graphql` - query { - site { - siteMetadata { - title - } - } - allMarkdownRemark(sort: {fields: [frontmatter___date], order: DESC }) { - nodes { - excerpt - fields { - slug - } - frontmatter { - date(formatString: "MMMM DD, YYYY") - title - description - } - } - } - } - `