From 8f8a41d76a71ccc428488a768813327e7fde534a Mon Sep 17 00:00:00 2001 From: johnjaejunlee95 Date: Tue, 5 Mar 2024 10:51:13 +0900 Subject: [PATCH] hits update --- _config.yml | 2 +- _includes/header.html | 10 ++++++---- _layouts/page.html | 1 + _layouts/post.html | 4 ++-- _posts/Generative Model/23-07-21-ddpm.md | 1 + _posts/Meta Learning/23-03-13-Sharp-MAML.md | 1 + _posts/Meta Learning/23-12-24-Meta-Learning_1.md | 1 + _posts/Meta Learning/24-01-02-Meta-Learning_2.md | 6 ++++-- 8 files changed, 17 insertions(+), 9 deletions(-) diff --git a/_config.yml b/_config.yml index 0a86dc70a7a3..ffab81847b19 100644 --- a/_config.yml +++ b/_config.yml @@ -173,7 +173,7 @@ footer-hover-col: "#0085A1" google_site_verification: GK3aeQFcmAR8D_ez5zbm0P8bfnIssKL1kF-jSvJNoL0 # Fill in your Google Analytics tag ID (or "Measurement ID") to track your website usage -#gtag: "G-XXXXXXXXXX" +gtag: "G-5Q72R0DG2Q" # Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics #cloudflare_analytics: "" diff --git a/_includes/header.html b/_includes/header.html index 614217598a29..3fc53bb31262 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -37,12 +37,14 @@

{{ page.subtitle | strip_html }}

{% if page.author %} By {{ page.author | strip_html }}
{% endif%} - Posted on {{ page.date | date: date_format }} - {% if page.last-updated %} - + + {% endif %} +
+ {% if page.hits %} + {% endif %} {% if page.readtime %} {% include readtime.html %} diff --git a/_layouts/page.html b/_layouts/page.html index f66f3e42db1b..3dbdb162f03c 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -14,6 +14,7 @@ {% endfor %} {% endif %} + {{ content }} diff --git a/_layouts/post.html b/_layouts/post.html index 9f27cc3109c0..69780b2f636d 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,10 +9,10 @@
{% if page.gh-repo %} - {% assign gh_split = page.gh-repo | split:'/' %} + {% assign gh_split = page.gh-repo | split:'/' %} {% assign gh_user = gh_split[0] %} {% assign gh_repo = gh_split[1] %} - +
{% if page.gh-badge.size > 0 %} {% for badge in page.gh-badge %} diff --git a/_posts/Generative Model/23-07-21-ddpm.md b/_posts/Generative Model/23-07-21-ddpm.md index 95c0805fd93b..a2d99ec24b5c 100644 --- a/_posts/Generative Model/23-07-21-ddpm.md +++ b/_posts/Generative Model/23-07-21-ddpm.md @@ -9,6 +9,7 @@ date: "2023-07-21" description: "" categories: "Generative_Model" toc: False +hits: true # toc_sticky: True tags: [Generative, Diffusion Model, Gaussian Distribution] use_math: true diff --git a/_posts/Meta Learning/23-03-13-Sharp-MAML.md b/_posts/Meta Learning/23-03-13-Sharp-MAML.md index 28206eb665d9..8ba32fc39ea2 100644 --- a/_posts/Meta Learning/23-03-13-Sharp-MAML.md +++ b/_posts/Meta Learning/23-03-13-Sharp-MAML.md @@ -9,6 +9,7 @@ date: "2023-03-13" description: "" categories: [Meta Learning] toc: False +hits: true # toc_sticky: True tags: [Meta-Learning, MAML, Flat-Minima, SAM] use_math: true diff --git a/_posts/Meta Learning/23-12-24-Meta-Learning_1.md b/_posts/Meta Learning/23-12-24-Meta-Learning_1.md index def320f5f74c..9943fc047f31 100644 --- a/_posts/Meta Learning/23-12-24-Meta-Learning_1.md +++ b/_posts/Meta Learning/23-12-24-Meta-Learning_1.md @@ -9,6 +9,7 @@ date: "2023-12-30" description: "" categories: [Meta Learning] toc: False +hits: true # toc_sticky: True tags: [Meta-Learning, Few-Shot Learning] use_math: true diff --git a/_posts/Meta Learning/24-01-02-Meta-Learning_2.md b/_posts/Meta Learning/24-01-02-Meta-Learning_2.md index 22da8f2fc99e..994e1a0bdfc1 100644 --- a/_posts/Meta Learning/24-01-02-Meta-Learning_2.md +++ b/_posts/Meta Learning/24-01-02-Meta-Learning_2.md @@ -2,13 +2,15 @@ layout: post gh-repo: johnjaejunlee95/johnjaejunlee95.github.io -gh-badge: [star, follow] +gh-badge: [star,follow] comments: true author: johnjaejunlee95 title: "[개념설명] Meta Learning (2) - Approaches" -date: "2024-03-04" +date: "2024-03-03" +last-updated: "2024-03-04" description: "" categories: [Meta Learning] +hits: true toc: false toc_sticky: true tags: [Meta-Learning, Few-Shot Learning, MAML, Reptile, MatchingNet, ProtoNet]