実際にMermaid 記法を試す


以前の投稿でMermaid 記法についてまとめた.

今回はそのサンプルを示す.

Mermaid記法は下記のような形で記載する.こういった作業はChatGPTがとても上手いので,人間はプロンプトのみで作成できる.

graph TD
    LM["Language Models<br>方法論の全体像"] 
    LM --> Statistical["Statistical Models<br>統計的モデル"]
    LM --> Neural["Neural Network Models<br>ニューラルネットワークモデル"]
    
    Statistical --> Ngram["N-gram<br>確率的な連続語モデル"]
    
    Neural --> RNN["RNN<br>リカレントニューラルネットワーク"]
    Neural --> LSTM["LSTM<br>長短期記憶"]
    Neural --> Transformer["Transformer<br>自己注意メカニズム"]
    
    Transformer --> BERT["BERT<br>双方向トランスフォーマー"]
    Transformer --> GPT["GPT<br>生成型トランスフォーマー"]
    
    style LM fill:#f9f,stroke:#333,stroke-width:4px
    style Statistical fill:#ccf,stroke:#333,stroke-width:2px
    style Neural fill:#ccf,stroke:#333,stroke-width:2px
    style Ngram fill:#ffc,stroke:#666,stroke-width:1px
    style RNN fill:#ffc,stroke:#666,stroke-width:1px
    style LSTM fill:#ffc,stroke:#666,stroke-width:1px
    style Transformer fill:#ffc,stroke:#666,stroke-width:1px
    style BERT fill:#cfc,stroke:#666,stroke-width:1px
    style GPT fill:#cfc,stroke:#666,stroke-width:1px

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です