Skip to content

Commit 42333a7

Browse files
committed
feat: Add research pages.
1 parent 9c4f02f commit 42333a7

File tree

10 files changed

+57
-167
lines changed

10 files changed

+57
-167
lines changed

content/blog/_index.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

content/blog/markdown_syntax.md

Lines changed: 0 additions & 147 deletions
This file was deleted.

content/blog/post_3.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

content/ja/research/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Research"
3+
weight: 100
4+
---

content/ja/research/autopmob.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "AutoPMoB: Automated Physical Model Builder"
3+
date: 2024-11-16
4+
draft: false
5+
---
6+
7+
## Overview
8+
9+
化学プラントにおけるデジタルツインの実現には,実プロセスを正確に表現可能な物理モデル(第一原理モデル)が必要です. しかし,モデル構築は専門性を有する研究者の試行錯誤的な取り組みを必要とし,難しく高コストです. 私達は,AutoPMoB(automated physical model builder)と名付けた,文献を駆使してあらゆるプロセスの物理モデルを自動的に構築する人工知能(AI)の開発を目指しています. AutoPMoBを実現するには,複数の要素技術を開発する必要があります. 現在,自然言語処理や機械学習の技術を活用した要素技術を開発中です.
10+
11+
(作成中)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "実問題解決のためのデータ解析とNLP"
3+
date: 2024-11-16
4+
draft: false
5+
---
6+
7+
この研究では、製品品質を正確に予測するための手法の開発や、製造業における問題予防のための文書ベースのアプローチの開発など、データ解析と自然言語処理(NLP)技術の開発に取り組んでいます。
8+
9+
(作成中)

content/research/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Research"
3+
weight: 100
4+
---

content/research/autopmob.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "AutoPMoB: Automated Physical Model Builder"
3+
date: 2024-11-16
4+
draft: false
5+
---
6+
7+
## Overview
8+
9+
To realize a digital twin in a chemical plant, it is necessary to have a physical model (first-principles model) that can accurately represent the actual process. However, physical model building requires trial and error by researchers with expertise, making it difficult and costly. We have been developing an artificial intelligence (AI) based system called AutoPMoB (automated physical model builder) that automatically constructs physical models from literature databases.
10+
11+
12+
(Under construction)
13+
<!-- Towards the realization of AutoPMoB, we are developing fundamental technologies as follows: -->
14+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Data Analysis and NLP for Practical Solutions"
3+
date: 2024-11-16
4+
draft: false
5+
---
6+
7+
This research involves the development of data analysis and natural language processing (NLP) techniques to solve practical issues, such as creating methods for accurately predicting product quality and developing document-based approaches for proactive problem prevention.
8+
9+
(Under construction)

layouts/partials/header.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<div>
33
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" id="home-link">Home</a>
44
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" id="publications-link">Publications</a>
5+
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" id="research-link">Research</a>
56
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" id="achievements-link">Achievements</a>
67
</div>
78
<div>
@@ -49,21 +50,26 @@
4950
const currentLanguage = getCurrentLanguage();
5051
const homeLink = document.getElementById("home-link");
5152
const publicationsLink = document.getElementById("publications-link");
53+
const researchLink = document.getElementById("research-link");
5254
const achievementsLink = document.getElementById("achievements-link");
5355

5456
if (currentLanguage === "ja") {
5557
homeLink.href = "/ja/";
5658
publicationsLink.href = "/ja/publication-list";
59+
researchLink.href = "/ja/research";
5760
achievementsLink.href = "/ja/achievements";
5861
homeLink.textContent = "ホーム";
5962
publicationsLink.textContent = "研究業績";
63+
researchLink.textContent = "研究紹介";
6064
achievementsLink.textContent = "活動";
6165
} else {
6266
homeLink.href = "/";
6367
publicationsLink.href = "/publication-list";
68+
researchLink.href = "/research";
6469
achievementsLink.href = "/achievements";
6570
homeLink.textContent = "Home";
6671
publicationsLink.textContent = "Publications";
72+
researchLink.textContent = "Research";
6773
achievementsLink.textContent = "Achievements";
6874
}
6975
}

0 commit comments

Comments
 (0)