腰椎MRIを4クラスに自動分割する研究メモ
-- MRI画像から背景・椎体・脊柱管・椎間板をピクセル単位で分類する。 - 論文の核心は、前処理、U-Net改良、Combined Lossを組み合わせて高精度なセグメンテーションを実現した点にある。 -
+ {t.eyebrow} +{t.title}
+{t.lead}
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 600bd5b..38a537d 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -27,7 +27,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: npm - name: Install dependencies diff --git a/package-lock.json b/package-lock.json index 723a310..c823d65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,9 @@ "dependencies": { "@astrojs/mdx": "latest", "astro": "latest" + }, + "engines": { + "node": ">=22.12.0" } }, "node_modules/@astrojs/compiler": { diff --git a/package.json b/package.json index 25aaaca..d22bf04 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,9 @@ "build": "astro build", "preview": "astro preview" }, + "engines": { + "node": ">=22.12.0" + }, "dependencies": { "@astrojs/mdx": "latest", "astro": "latest" diff --git a/src/components/Glossary.astro b/src/components/Glossary.astro index a17abc8..1f65bd8 100644 --- a/src/components/Glossary.astro +++ b/src/components/Glossary.astro @@ -7,13 +7,19 @@ interface Term { interface Props { terms: Term[]; + language?: "ja" | "en"; } -const { terms } = Astro.props; +const { terms, language = "ja" } = Astro.props; + +const placeholder = + language === "ja" + ? "例: Dice, U-Net, T2 SPACE, Focal Loss" + : "Example: Dice, U-Net, T2 SPACE, Focal Loss"; ---
- ポイントは、解剖学的な個体番号を当てるのではなく、臨床的に見たい構造カテゴリを正確に塗り分けること。 -
+{t.note}
- MRI画像から背景・椎体・脊柱管・椎間板をピクセル単位で分類する。 - 論文の核心は、前処理、U-Net改良、Combined Lossを組み合わせて高精度なセグメンテーションを実現した点にある。 -
+ {t.eyebrow} +{t.lead}