From 6393f7f2e39ff54084059ffb8f6325a24ecafceb Mon Sep 17 00:00:00 2001 From: Shunsuke KITADA Date: Wed, 1 Jan 2025 16:36:15 +0900 Subject: [PATCH 1/2] add template for the columns --- content/column/_index.md | 6 +++++ content/column/beautiful-python-code.md | 22 ++++++++++++++++++ content/column/extending-diffusers-code.md | 22 ++++++++++++++++++ .../column/mastering-huggingface-ecosystem.md | 23 +++++++++++++++++++ content/column/python-dataclass.md | 22 ++++++++++++++++++ content/column/reproducible-experiments.md | 22 ++++++++++++++++++ content/column/typehint-in-python.md | 22 ++++++++++++++++++ 7 files changed, 139 insertions(+) create mode 100644 content/column/_index.md create mode 100644 content/column/beautiful-python-code.md create mode 100644 content/column/extending-diffusers-code.md create mode 100644 content/column/mastering-huggingface-ecosystem.md create mode 100644 content/column/python-dataclass.md create mode 100644 content/column/reproducible-experiments.md create mode 100644 content/column/typehint-in-python.md diff --git a/content/column/_index.md b/content/column/_index.md new file mode 100644 index 0000000..b5b2679 --- /dev/null +++ b/content/column/_index.md @@ -0,0 +1,6 @@ +--- +title: "Column" +date: 2025-01-01T00:00:00+09:00 +draft: false +description: "This is meta description" +--- diff --git a/content/column/beautiful-python-code.md b/content/column/beautiful-python-code.md new file mode 100644 index 0000000..b2b709e --- /dev/null +++ b/content/column/beautiful-python-code.md @@ -0,0 +1,22 @@ +--- +title: "✨️ Keeping Your Python Code Beautiful" +date: 2025-01-03T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "ruff", "rust"] +tags: ["Python", "ruff", "rust"] +# post type +type: "post" +--- + +## ✨️ Python のコードを美しく保つには diff --git a/content/column/extending-diffusers-code.md b/content/column/extending-diffusers-code.md new file mode 100644 index 0000000..d598ee5 --- /dev/null +++ b/content/column/extending-diffusers-code.md @@ -0,0 +1,22 @@ +--- +title: "🧨 Extending diffusers code" +date: 2025-01-02T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "diffusers"] +tags: ["Python", "diffusers"] +# post type +type: "post" +--- + +## 🧨 `diffusers` のコードを拡張する diff --git a/content/column/mastering-huggingface-ecosystem.md b/content/column/mastering-huggingface-ecosystem.md new file mode 100644 index 0000000..ab418b0 --- /dev/null +++ b/content/column/mastering-huggingface-ecosystem.md @@ -0,0 +1,23 @@ +--- +title: "🤗 Mastering huggingface ecosystem" +date: 2024-01-01T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "Hugging Face", "huggingface transformers", "huggingface evaluate", "huggingface datasets"] +tags: ["Python", "Hugging Face", "huggingface transformers", "huggingface evaluate", "huggingface datasets"] +# post type +type: "post" +--- + +## 🤗 Hugging Face のエコシステムを使い倒す + diff --git a/content/column/python-dataclass.md b/content/column/python-dataclass.md new file mode 100644 index 0000000..06220a4 --- /dev/null +++ b/content/column/python-dataclass.md @@ -0,0 +1,22 @@ +--- +title: "🔎 dataclass in Python" +date: 2025-01-04T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "Type Hint", "dataclass"] +tags: ["Python", "Type Hint", "dataclass"] +# post type +type: "post" +--- + +## 🔎 `dataclass` で万物に型をつけよう diff --git a/content/column/reproducible-experiments.md b/content/column/reproducible-experiments.md new file mode 100644 index 0000000..bc959d6 --- /dev/null +++ b/content/column/reproducible-experiments.md @@ -0,0 +1,22 @@ +--- +title: "🧪 Reproducible Experiments for Deep Learning with Python" +date: 2025-01-04T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "uv", "docker", "rust"] +tags: ["Python", "uv", "docker", "rust"] +# post type +type: "post" +--- + +## 🧪 深層学習を用いた実験における再現可能な環境構築 diff --git a/content/column/typehint-in-python.md b/content/column/typehint-in-python.md new file mode 100644 index 0000000..23e52e4 --- /dev/null +++ b/content/column/typehint-in-python.md @@ -0,0 +1,22 @@ +--- +title: "💡 Type Hint in Python" +date: 2025-01-05T00:00:00+09:00 +draft: false + +# post author +author : "北田 俊輔" + +# post thumb +image: "images/blog/blog-1.jpg" + +# meta description +description: "this is meta description" + +# taxonomies +categories: ["Python", "Type Hint"] +tags: ["Python", "Type Hint"] +# post type +type: "post" +--- + +## 💡すべてを救う Python の型ヒントについて From 279be313ba5bbabe561e4721816e9379dceb67f0 Mon Sep 17 00:00:00 2001 From: Shunsuke KITADA Date: Wed, 1 Jan 2025 16:37:15 +0900 Subject: [PATCH 2/2] update --- content/column/mastering-huggingface-ecosystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/column/mastering-huggingface-ecosystem.md b/content/column/mastering-huggingface-ecosystem.md index ab418b0..6c93da8 100644 --- a/content/column/mastering-huggingface-ecosystem.md +++ b/content/column/mastering-huggingface-ecosystem.md @@ -1,6 +1,6 @@ --- title: "🤗 Mastering huggingface ecosystem" -date: 2024-01-01T00:00:00+09:00 +date: 2025-01-01T00:00:00+09:00 draft: false # post author