DeskRex.ai

open α

テーマ

データベース

自動化

発見

サインイン

リサーチの結果の保存、レポートの作成、共有が行えます。

サインイン

レポートの一覧に戻る

【実践ガイド】オープンソース分子生成AI:主要モデルと使い方を徹底解説

🗓 Created on 8/21/2025

  • 📜要約
  • 📊ビジュアライズ
  • 🖼関連する画像
  • 🔍詳細
    • 🏷はじめに:オープンソースAIが拓く分子設計の新時代
    • 🏷目的別に選ぶ!主要オープンソース分子生成AIモデルカタログ
    • 🏷【実践編】代表的モデルのインストールと基本操作ガイド
    • 🏷まとめ:研究開発を成功に導くAIモデル選定のポイント
  • 🖍考察
  • 📚参考文献
    • 📖利用された参考文献
    • 📖未使用の参考文献
    • 📊ドメイン統計

📜 要約

主題と目的

この調査は、オープンソースとして利用可能な分子特性予測や化合物設計を行う生成AI(人工知能)について、その種類、特徴、そして具体的な使用方法を明らかにすることを目的としています。創薬や材料開発の分野で注目を集めるこれらのAIツールを実際に活用したいと考えている研究者や開発者に向けて、目的別に最適なモデルを選び、自身の環境で動かすための実践的なガイドを提供します。これにより、最先端の分子設計技術へのアクセスを容易にし、研究開発の加速を支援します。

回答

創薬や新素材開発の世界では、AIがゼロから新しい分子を設計する時代が到来しています。特にオープンソースのAIツールは、この技術革新を誰もが利用できるようにし、研究開発の民主化を力強く推し進めています。ここでは、目的別に分類した主要なオープンソースAIモデルを紹介し、実際にそれらを活用するための手順を詳しく解説します。

主要なオープンソース分子生成AIモデルの概要

分子生成AIと一口に言っても、タンパク質の構造を予測するものから、特定の物性を持つポリマーを設計するものまで、その機能は多岐にわたります。あなたの目的に合ったツールを見つけるために、以下の表で主要なモデルの概要を整理しました。
モデル名主な特徴・用途使い方(概要)
Boltz (Boltz-1, Boltz-2)生体分子(タンパク質、RNA等)の3D構造や分子間の結合親和性を高精度に予測します。AlphaFold3に匹敵する性能を持つオープンソースモデルとして注目されています
aibase.com
。
Pythonのpipコマンドで簡単にインストールでき、YAML形式の設定ファイルを入力してコマンドラインから実行します
github.com
。
NVIDIA BioNeMo創薬研究のための包括的なAIフレームワークです。AlphaFold2(構造予測)やDiffDock(分子ドッキング)などの最先端モデルを、最適化されたコンテナ(NIM)として提供し、複雑な環境構築なしで利用できます
prtimes.jp
。
Dockerコンテナとして提供され、APIを通じて各モデルの機能にアクセスします。ローカルやクラウドのGPU環境で実行可能です
github.com
。
MolecularGPT大規模言語モデル(LLM)を応用し、少量のデータ(Few-Shot)からでも分子の特性を高精度に予測することに特化しています
arxiv.org
。
CondaでPython環境を構築後、公開されているデータセットを準備し、学習や評価のスクリプトを実行します。学習済みモデルも利用可能です
github.com
。
ether0「自然言語で分子を設計する」というコンセプトを追求した化学推論特化型のAIモデルです。化学的な質問に答えたり、指示に基づいて分子構造(SMILES形式)を生成したりします
ledge.ai
。
Hugging Faceの
transformers
ライブラリを使ってPythonコードから簡単にモデルをロードし、対話的に利用できます
github.com
。
REINVENT4強化学習(RL)を用い、ユーザーが定義した複数の目的(例:高い活性、低い毒性)を同時に満たす分子を効率的に生成します。新規設計から既存分子の最適化まで幅広く対応します
github.com
。
Condaで環境を構築し、TOML形式の設定ファイルに目的や条件を記述してコマンドラインから実行します
github.com
。
RadonPy, SMiPoly創薬だけでなく、高分子(ポリマー)材料の開発に特化したツールです。RadonPyは物性を全自動で計算し
github.com
、SMiPolyは合成可能な仮想ポリマーライブラリを網羅的に生成します
github.com
。
それぞれpipやcondaでライブラリをインストールし、Pythonスクリプトから利用します。チュートリアルやサンプルコードが豊富に提供されています。

実践ガイド:代表的なモデルの使い方

ここでは、特に代表的なモデルを実際に動かすための具体的な手順を解説します。
1. NVIDIA BioNeMo (DiffDock) で分子ドッキングを試す
NVIDIAが提供するNIM(NVIDIA Inference Microservices)は、複雑なAIモデルをDockerコンテナとして手軽に利用できる画期的な方法です。ここでは、タンパク質と低分子化合物の結合様式を予測するDiffDockを例に取ります。
  1. 前提条件の準備 NVIDIA製のGPU(最低16GBのメモリ推奨)が搭載されたマシンに、DockerとNVIDIA Container Toolkitをインストールします。また、NVIDIA GPU Cloud (NGC)のアカウントを作成し、APIキーを取得後、コマンドラインでNGCにログインしておきます
    nvidia.com
    。
    docker login nvcr.io
    
  2. コンテナの取得と実行 以下のコマンドでDiffDockのコンテナイメージを取得し、実行します。これにより、ローカルマシンのポート8000番でAPIサービスが起動します
    nvidia.com
    。
    # 環境変数にあなたのNGC APIキーを設定
    export NGC_API_KEY=<あなたのNGC APIキー>
    
    # DiffDockコンテナを実行
    docker run --rm --name diffdock-nim \
    --runtime=nvidia -p 8000:8000 \
    -e NGC_API_KEY=$NGC_API_KEY \
    nvcr.io/nim/mit/diffdock:2.0.1
    
  3. 推論の実行 予測したいタンパク質(PDB形式)と化合物(SDF形式)のデータを準備し、
    curl
    コマンドを使ってAPIにリクエストを送信します。以下の例では、Webから直接データを取得して実行しています
    nvidia.com
    。
    # リクエスト用のJSONファイルを作成
    protein_bytes=`curl https://files.rcsb.org/download/8G43.pdb | grep -E '^ATOM' | sed -z 's/\n/\\\n/g'`; \
    ligand_bytes=`curl https://files.rcsb.org/ligands/download/ZU6_ideal.sdf | sed -z 's/\n/\\\n/g'`; \
    echo "{ \"ligand\": \"${ligand_bytes}\", \"ligand_file_type\": \"sdf\", \"protein\": \"${protein_bytes}\", \"num_poses\": 1}" > diffdock.json
    
    # APIにPOSTリクエストを送信し、結果をoutput.jsonに保存
    curl --header "Content-Type: application/json" \
    --request POST \
    --data @diffdock.json \
    --output output.json \
    http://localhost:8000/molecular-docking/diffdock/generate
    
    実行後、
    output.json
    ファイルに予測された結合ポーズが信頼度スコアと共に保存されます。これを分子ビューアで可視化することで、結果を確認できます。
2. Boltz で手軽に3D構造を予測する
AlphaFoldクローンとして注目されるBoltzは、非常にシンプルな手順で利用を開始できます。
  1. インストール pipコマンド一つでインストールが完了します。GPU(CUDA)環境がある場合は、
    [cuda]
    オプションを付けると高速に動作します
    github.com
    。
    pip install boltz[cuda] -U
    
  2. 実行 予測したい分子の情報を記述したYAMLファイル(例:
    input.yaml
    )を作成し、以下のコマンドで実行します。予測結果はPDBファイルとして出力されます
    github.com
    。
    boltz predict input.yaml --use_msa_server
    
    公式ドキュメントにはYAMLファイルの書き方に関する詳細なガイドがあり、それに従うことで様々な分子の構造予測に挑戦できます
    github.com
    。

結果と結論

オープンソースの分子生成AIは、創薬から材料科学まで、幅広い研究開発分野に革命をもたらす強力なツールです。本調査で明らかになったように、Boltzのような手軽に導入できるモデルから、NVIDIA BioNeMoのような包括的なフレームワーク、MolecularGPTのような研究志向のモデルまで、その選択肢は非常に多岐にわたります。
研究開発を成功に導くための鍵は、万能なモデルを探すのではなく、自身の目的を明確に定義することにあります。例えば、特定のタンパク質に結合する化合物を探したいのか、あるいは特定の物性を持つ新しいポリマーを設計したいのか、その本質的な要件を定めることが第一歩となります。
その上で、今回紹介したようなツールを賢く組み合わせることが重要です。AIが生成した分子が本当に合成可能か評価するツールを併用したり、LLMの誤った情報生成(ハルシネーション)を抑えるために外部データベースと連携するRAG(Retrieval-Augmented Generation)のような技術を取り入れたりすることで、単一の手法では到達できない高精度な分子設計が実現します
nih.gov
。
最終的に、AIによる分子設計は一度で完結するものではありません。AIの提案を実験やシミュレーションで評価し、その結果をフィードバックして次の設計に活かすという、反復的な改善サイクルを回すことが、画期的な成果を生み出すための最も確実な道筋と言えるでしょう。これらのオープンソースAIは、その試行錯誤のプロセスを劇的に加速させ、未来のイノベーションを創造するための信頼できるパートナーとなるはずです。

コード実行

import React, { useState } from 'react';

const models = [
  {
    id: 'bionemo',
    name: 'NVIDIA BioNeMo (AlphaFold2 & DiffDock)',
    description: 'AlphaFold2によるタンパク質構造予測、DiffDockによる分子ドッキング機能などを提供するNIMマイクロサービス群。',
    prerequisites: [
      'DockerとNVIDIA Container Toolkit',
      'NVIDIA GPU Cloud (NGC) アカウントとAPIキー',
      '高性能GPU(最低16GBのGPUメモリ、A100/H100等を推奨)'
    ],
    installation: [
        {
            type: 'code',
            language: 'bash',
            title: 'AlphaFold2 NIM イメージのプル',
            code: 'docker pull nvcr.io/nim/deepmind/alphafold2:2.1.0'
        },
        {
            type: 'code',
            language: 'bash',
            title: 'DiffDock NIM イメージのプル',
            code: 'docker pull nvcr.io/nim/mit/diffdock:2.0.1'
        },
    ],
    usage: [
        {
            type: 'code',
            language: 'bash',
            title: 'AlphaFold2 NIM コンテナの実行例',
            code: 'export LOCAL_NIM_CACHE=~/.cache/nim\nexport NGC_API_KEY=<Your NGC API Key>\n\ndocker run --rm --name alphafold2 --runtime=nvidia \\\n  -e NGC_API_KEY \\\n  -v $LOCAL_NIM_CACHE:/opt/nim/.cache \\\n  -p 8000:8000 \\\n  nvcr.io/nim/deepmind/alphafold2:2.1.0'
        },
        {
            type: 'code',
            language: 'bash',
            title: 'AlphaFold2 NIM 推論APIの呼び出し例 (curl)',
            code: 'curl -X POST "http://localhost:8000/protein-structure/alphafold2/predict-structure-from-sequence" \\\n  -H \'Content-Type: application/json\' \\\n  -d \'{"sequence": "MNVIDIAIAMAI", "databases": ["uniref90", "small_bfd"]}\' > output.json'
        },
        {
            type: 'code',
            language: 'bash',
            title: 'DiffDock NIM コンテナの実行例',
            code: 'docker run --rm -it --name diffdock-nim \\\n  --runtime=nvidia -e NVIDIA_VISIBLE_DEVICES=0 \\\n  --shm-size=2G \\\n  --ulimit memlock=-1 \\\n  --ulimit stack=67108864 \\\n  -e NGC_API_KEY=$NGC_API_KEY \\\n  -p 8000:8000 \\\n  nvcr.io/nim/mit/diffdock:2.0.1'
        },
    ],
    notes: [
      'AlphaFold2のデータベースは巨大(数百GB)で、初回ダウンロードに長時間を要します。',
      'NIMの実行には高いスペックのGPUが要求されます。'
    ],
    references: [
        { name: 'NVIDIA BioNeMo examples', url: 'https://github.com/NVIDIA/bionemo-examples' },
        { name: 'AlphaFold2 NIM Quickstart Guide', url: 'https://docs.nvidia.com/nim/bionemo/alphafold2/latest/quickstart-guide.html' },
        { name: 'DiffDock NIM Getting Started', url: 'https://docs.nvidia.com/nim/bionemo/diffdock/2.0.1/getting-started.html' },
    ]
  },
  {
    id: 'boltz1',
    name: 'Boltz-1',
    description: 'タンパク質、複合体、小分子の3D構造と結合親和性を予測するオープンソースモデル。',
    prerequisites: [
      'Python環境(venvまたはcondaを推奨)',
      'GPUを利用する場合はCUDA対応ドライバ'
    ],
    installation: [
        {
            type: 'code',
            language: 'bash',
            title: 'PyPIからのインストール (CUDA対応)',
            code: 'pip install boltz[cuda] -U'
        },
        {
            type: 'code',
            language: 'bash',
            title: 'GitHubソースからのインストール',
            code: 'git clone https://github.com/jwohlwend/boltz.git\ncd boltz\npip install -e .[cuda]'
        },
    ],
    usage: [
        {
            type: 'code',
            language: 'bash',
            title: '基本的な推論コマンド',
            code: 'boltz predict input_path --use_msa_server'
        },
        {
            type: 'text',
            content: '`input_path`には、予測対象を指定したYAMLファイルや、バッチ処理用のディレクトリを指定します。出力にはlog(IC50)に相当する`affinity_pred_value`などが含まれます。'
        },
    ],
    notes: [
      'MSAサーバーの利用など、ユースケースによっては追加の前処理が推奨されます。'
    ],
    references: [
      { name: 'GitHub (boltz)', url: 'https://github.com/jwohlwend/boltz' },
      { name: 'Hugging Face (boltz-1)', url: 'https://huggingface.co/boltz-community/boltz-1' }
    ]
  },
  {
    id: 'moleculargpt',
    name: 'MolecularGPT',
    description: '大規模言語モデル(LLM)をベースとした分子特性予測フレームワーク。Llama-2を利用。',
    prerequisites: [
      'Python 3.10環境(condaを推奨)',
      'Llama-2ベースモデルとLoRAアダプタ(Hugging Faceから別途ダウンロードが必要)'
    ],
    installation: [
        {
            type: 'code',
            language: 'bash',
            title: '環境構築',
            code: 'conda create -n MolecularGPT python==3.10\nconda activate MolecularGPT\n# リポジトリ内で以下を実行\nbash init_env.sh\npip install git+https://github.com/ashvardanian/usearch-molecules.git@main'
        }
    ],
    usage: [
        {
            type: 'text',
            content: '1. Hugging FaceからLlama-2モデルを`./ckpts/llama`に、MolecularGPTのLoRAウェイトを`./ckpts/lora`に配置します。\n2. リポジトリで提供される学習スクリプト (`ICL_train.py`) や評価スクリプト (`ICL_test_sim_cls.py`等) を使用して、学習・評価を実行します。'
        }
    ],
    notes: [
      'ベースとなるLlamaモデルのライセンスと利用規約を確認する必要があります。'
    ],
    references: [
      { name: 'MolecularGPT GitHub', url: 'https://github.com/NYUSHCS/MolecularGPT' },
      { name: 'Llama-2 on Hugging Face', url: 'https://huggingface.co/meta-llama/Llama-2-7b-chat-hf' },
      { name: 'MolecularGPT LoRA on Hugging Face', url: 'https://huggingface.co/YuyanLiu/MolecularGPT' }
    ]
  },
  {
    id: 'smipoly',
    name: 'SMiPoly',
    description: '化学反応ルールに基づいて、モノマーから仮想的なポリマーライブラリを生成するライブラリ。',
    prerequisites: [
      'Python 3.9–3.12',
      'RDKit, numpy, pandas',
      'Jupyter Notebook(デモ実行用)'
    ],
    installation: [
        {
            type: 'code',
            language: 'bash',
            title: 'pipからのインストール',
            code: 'pip install smipoly'
        },
        {
            type: 'code',
            language: 'bash',
            title: 'condaからのインストール',
            code: 'conda install -c conda-forge smipoly'
        },
    ],
    usage: [
        {
            type: 'text',
            content: 'GitHubリポジトリ内のサンプルJupyter Notebook (`sample_script/sample_smip_demo4.ipynb`) を実行することで、モノマーの読み込みからポリマー生成までの一連の流れを体験できます。'
        }
    ],
    notes: [
      '一部の重合反応(例: ROMP)や分岐ポリマーの生成には未対応です。'
    ],
    references: [
      { name: 'SMiPoly GitHub', url: 'https://github.com/PEJpOhno/SMiPoly' },
      { name: 'SMiPoly ドキュメント', url: 'https://pejpohno.github.io/SMiPoly/' }
    ]
  },
  {
    id: 'ether0',
    name: 'ether0',
    description: '化学分野の科学的推論に特化したオープンなLLMと報酬関数、評価ベンチマーク。',
    prerequisites: [
      '`transformers`ライブラリがインストールされたPython環境'
    ],
    installation: [
        {
            type: 'code',
            language: 'bash',
            title: 'pipでのインストール',
            code: 'pip install git+https://github.com/Future-House/ether0.git'
        }
    ],
    usage: [
        {
            type: 'code',
            language: 'python',
            title: 'モデルのロードと利用例',
            code: 'from transformers import AutoModelForCausalLM, AutoTokenizer\n\n# モデルとトークナイザーをHugging Faceからロード\nmodel = AutoModelForCausalLM.from_pretrained("futurehouse/ether0")\ntokenizer = AutoTokenizer.from_pretrained("futurehouse/ether0")\n\n# 報酬関数の利用例\nfrom ether0.rewards import valid_mol_eval\nassert valid_mol_eval("completion_smiles", "partial_smiles")'
        }
    ],
    notes: [
      'リポジトリには完全なトレーニングコードは含まれていません。外部ツールとの連携が前提です。'
    ],
    references: [
        { name: 'ether0 GitHub', url: 'https://github.com/Future-House/ether0' },
        { name: 'Future House Announcement', url: 'https://www.futurehouse.org/research-announcements/ether0-a-scientific-reasoning-model-for-chemistry' }
    ]
  }
];

const CodeBlock = ({ language, code }) => (
  <pre className="bg-gray-800 text-white p-4 rounded-md overflow-x-auto text-sm">
    <code className={`language-${language}`}>{code}</code>
  </pre>
);

const ModelSection = ({ model, isOpen, onToggle }) => (
  <div className="mb-6 border border-gray-200 rounded-lg overflow-hidden shadow-sm">
    <button 
      onClick={onToggle}
      className="w-full text-left p-4 bg-gray-50 hover:bg-gray-100 flex justify-between items-center focus:outline-none"
    >
      <h2 className="text-xl font-bold text-gray-800">{model.name}</h2>
      <span className={`transform transition-transform duration-200 ${isOpen ? 'rotate-180' : ''}`}>
        <svg className="w-6 h-6 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 9l-7 7-7-7"></path></svg>
      </span>
    </button>
    {isOpen && (
      <div className="p-6 bg-white">
        <p className="text-gray-600 mb-6">{model.description}</p>

        <div className="grid grid-cols-1 md:grid-cols-2 gap-8">
            <div>
                <h3 className="text-lg font-semibold text-gray-700 mb-3 border-b pb-2">前提条件</h3>
                <ul className="list-disc list-inside space-y-2 text-gray-600">
                {model.prerequisites.map((item, i) => <li key={i}>{item}</li>)}
                </ul>
            </div>
            <div>
                <h3 className="text-lg font-semibold text-gray-700 mb-3 border-b pb-2">インストール</h3>
                <div className="space-y-4">
                    {model.installation.map((item, i) => (
                        item.type === 'code' ? 
                        <div key={i}><p className='font-medium text-gray-600 mb-1'>{item.title}</p><CodeBlock language={item.language} code={item.code} /></div> : null
                    ))}
                </div>
            </div>
        </div>

        <div className="mt-8">
          <h3 className="text-lg font-semibold text-gray-700 mb-3 border-b pb-2">利用方法</h3>
            <div className="space-y-4">
            {model.usage.map((item, i) => (
                item.type === 'code' ? 
                <div key={i}><p className='font-medium text-gray-600 mb-1'>{item.title}</p><CodeBlock language={item.language} code={item.code} /></div> :
                <p key={i} className="text-gray-600 bg-gray-50 p-3 rounded-md">{item.content}</p>
            ))}
            </div>
        </div>

        <div className="mt-8">
            <h3 className="text-lg font-semibold text-gray-700 mb-3 border-b pb-2">注意点</h3>
            <ul className="list-disc list-inside space-y-2 text-gray-600">
            {model.notes.map((note, i) => <li key={i}>{note}</li>)}
            </ul>
        </div>

        <div className="mt-8">
            <h3 className="text-lg font-semibold text-gray-700 mb-3 border-b pb-2">出典</h3>
            <ul className="list-disc list-inside space-y-2">
            {model.references.map((ref, i) => (
                <li key={i}><a href={ref.url} target="_blank" rel="noopener noreferrer" className="text-blue-500 underline hover:text-blue-700">{ref.name}</a></li>
            ))}
            </ul>
        </div>

      </div>
    )}
  </div>
);

const App = () => {
  const [openModelId, setOpenModelId] = useState(models[0].id);

  const toggleModel = (id) => {
    setOpenModelId(openModelId === id ? null : id);
  };

  return (
    <div className="font-sans bg-gray-50 min-h-screen p-4 sm:p-6 md:p-8">
        <div className="max-w-5xl mx-auto">
            <header className="mb-8 text-center">
                <h1 className="text-3xl sm:text-4xl font-extrabold text-gray-900 mb-2">オープンソースの分子特性予測・化合物設計AI</h1>
                <p className="text-base text-gray-500">主要な生成AIモデルの概要と利用方法</p>
            </header>
            <main>
                {models.map(model => (
                <ModelSection 
                    key={model.id} 
                    model={model} 
                    isOpen={openModelId === model.id}
                    onToggle={() => toggleModel(model.id)}
                />
                ))}
            </main>
            <footer className="text-center mt-10 text-sm text-gray-400">
                <p>データは提供されたコンテキストに基づき生成されています。 (2025-08-21)</p>
            </footer>
        </div>
    </div>
  );
};

export default App;

🖼 関連する画像

Image for cmekmrpdq004my5c5tp7him67
Image for cmekmrpdq004ny5c5lo1olggg
Image for cmekmrpdq004oy5c5cs0jochw
Image for cmekmrpdq004py5c50o2y6u40
Image for cmekmrpdq004qy5c5jggibi2y
Image for cmekmrpdq004ry5c5a03gvqxv
Image for cmekmrpdq004sy5c5z87lwtoc
Image for cmekmrpdq004uy5c5g3ihlhd4
Image for cmekmrpdr004vy5c5rb8legvc
Image for cmekmrpdq004ty5c57liurtgw
Image for cmekmrpdr0056y5c55a739u2k
Image for cmekmrpdr0057y5c5xt527kkx
Image for cmekmrpdr0058y5c5leni05m2
Image for cmekmrpdr0059y5c565va6v62
Image for cmekmrpdr005ay5c5mhzv88n6
Image for cmekmrpds005by5c5yn5s7lcc
Image for cmekmrpds005cy5c5nngmkkaw
Image for cmekmrpds005dy5c5rk3yi1p7
Image for cmekmrpds005ey5c5g3yfa5sz
Image for cmekmrpds005fy5c57o2ee2ia
Image for cmekmrthu0071y5c58ndji747
Image for cmekmrtht006xy5c54amd3w66
Image for cmekmrthr005ty5c5obr95djs
Image for cmekmrtht0070y5c5ckqsfqhg
Image for cmekmrthr005vy5c5qtwubuus
Image for cmekmrthr005wy5c51wbkax2j
Image for cmekmrthr005xy5c5fu7c8fps
Image for cmekmrthr005yy5c5aqvjpim1
Image for cmekmrthr005zy5c5b4xinr32
Image for cmekmrthr0060y5c5wr9inmbj
Image for cmekmrths006by5c5f2d8kw8k
Image for cmekmrths006cy5c5r55ir30c
Image for cmekmrths006dy5c5z7f04vt9
Image for cmekmrths006ey5c5c9io9zzm
Image for cmekmrths006fy5c56cxmbjfp
Image for cmekmrths006gy5c5ogcjdu7j
Image for cmekmrths006hy5c53uenzrht
Image for cmekmrths006iy5c55l7hrs9o
Image for cmekmrths006jy5c51y8fsdyb
Image for cmekmrths006ky5c51d1c8viz
Image for cmekmrtht006vy5c5jd5nx5eg
Image for cmekmrtht006wy5c5hu11yu5p
Image for cmekmrtht006yy5c5cvwsi820
Image for cmekmrtht006zy5c5hvjmzbwv
Image for cmekmrthu0072y5c54yh89vfv
Image for cmekmrthu0073y5c5h9noc6l2
Image for cmekmrthu0074y5c5cqgxeamt
Image for cmekodaq1001g7xa4cazyq2hw
Image for cmekodaq1001h7xa4wv7oy09r
Image for cmekod7ll00d1y5c57wtrh1py
Image for cmekod7ll00d3y5c5nu6nom0c
Image for cmekod7ll00d4y5c5vpdgzogp
Image for cmekod7lk00cmy5c5kbq48iif
Image for cmekod7lk00cny5c5rcquli06
Image for cmekodaq1001j7xa4kservzpp
Image for cmekod7lk00cpy5c5g4inblby
Image for cmekod7ll00d5y5c5bdwbv7tl
Image for cmekod7ll00d7y5c5ylvoy7y4
Image for cmekod7ll00d8y5c51v23qyyh
Image for cmekod7ll00d9y5c5uctijtpb
Image for cmekod7ll00day5c5me0kd0jn
Image for cmekodaq2001z7xa45trqy2qh
Image for cmekodaq200207xa4v59jisxp
Image for cmekod7lm00dny5c53ljcr0od
Image for cmekod7lm00doy5c5h33rw651
Image for cmekod7lm00dpy5c5tewb6n4v
Image for cmekod7lm00dqy5c5uhfr0q7r
Image for cmekod7lm00dry5c5k4tyx9si
Image for cmekod7lm00dsy5c5m4548odd
Image for cmekod7lm00dty5c5lyua7rt0
Image for cmekod7lm00duy5c51g0kj3vl
Image for cmekod7ln00e5y5c5vzt7v232
Image for cmekod7ln00e6y5c5r4n0pzub
Image for cmekod7ln00e7y5c5j1yz61kg
Image for cmekod7ln00e8y5c518vz4w0u
Image for cmekod7ln00e9y5c55lxw9lvl
Image for cmekod7ln00eay5c5kyk5gzxl
Image for cmekod7ln00eby5c5o4w0yumw
Image for cmekod7ln00ecy5c5etusd0hv
Image for cmekod7ln00edy5c5e0q4mczb
Image for cmekod7ln00eey5c57gym9iv3
Image for cmekodaq4002j7xa4at8qk5e2
Image for cmekodaq4002o7xa40swl0jwh
Image for cmekod7lo00ery5c5zuxpa074
Image for cmekodaq4002l7xa4ttzhvy47
Image for cmekod7lp00fay5c555q4v4ww
Image for cmekod7lq00ffy5c5d3brij9o
Image for cmekod7lo00evy5c5pr5lrpxu
Image for cmekodaq4002p7xa451vluzm3
Image for cmekod7lq00fgy5c58sastqei
Image for cmekodaq4002m7xa4rsl1ezab
Image for cmekod7lp00f9y5c5tzsfo6c8
Image for cmekod7lp00fby5c5u203923r
Image for cmekod7lq00fcy5c5fv2tkvc5
Image for cmekod7lq00fdy5c5tr04cv5t
Image for cmekod7lq00fey5c570qed52a
Image for cmekod7lq00fhy5c5giiaxkju
Image for cmekodaq600337xa403838ly8
Image for cmekodaq600347xa4an2m5wj7
Image for cmekodapz00137xa43uoqtv2c
Image for cmekodaq600357xa43j83rqdd
Image for cmekodapz00147xa493sussba
Image for cmekodaq600367xa41hcvhl9g
Image for cmekodapy000p7xa4dqcek7em
Image for cmekodaq600377xa4x4bf00wo
Image for cmekodaq6003b7xa469dfypgk
Image for cmekodapy000s7xa4qr5rzir1
Image for cmekodapz00157xa41ufq9l5f
Image for cmekodaq000167xa4lxpe5zf2
Image for cmekodaq000177xa4svf03b9x
Image for cmekodaq000187xa4kwqbmklj
Image for cmekodaq000197xa4lb94ii3i
Image for cmekodaq0001a7xa4wguqz3tr
Image for cmekodaq0001b7xa4wgzx849i
Image for cmekodaq0001c7xa47mplcatp
Image for cmekodaq1001i7xa4egoiij5w
Image for cmekodaq1001k7xa4v5r21gih
Image for cmekodaq1001l7xa41gh750cl
Image for cmekodaq1001m7xa4cn6gld2r
Image for cmekodaq1001n7xa43otzdc8i
Image for cmekodaq2001o7xa4v5arflor
Image for cmekodaq200217xa4159n4snc
Image for cmekodaq300227xa4njdwsdnj
Image for cmekodaq300237xa4266gqdpq
Image for cmekodaq300247xa4o3sij6kq
Image for cmekodaq300257xa4xaejanhv
Image for cmekodaq300267xa4e0pl9vn6
Image for cmekodaq300277xa4l4fd3g77
Image for cmekodaq300287xa4q1r1wdzb
Image for cmekodaq4002k7xa4xyg2i7yv
Image for cmekodaq4002n7xa4xv1r7qtp
Image for cmekodaq4002q7xa43u1iune8
Image for cmekodaq5002r7xa48jgn31w6
Image for cmekodaq5002s7xa4pvnatl4z
Image for cmekodaq600387xa4nxok852z
Image for cmekodaq600397xa43vn33x8g
Image for cmekodaq6003a7xa4bggm95jy
Image for cmekodaq6003c7xa4cn5ckehm
Image for cmekovpo900577xa420g33yc4
Image for cmekovpo700497xa48mwq6zvw
Image for cmekovpo7004a7xa4nwtlm3bb
Image for cmekovpo7004b7xa4seeiu02v
Image for cmekovpo7004c7xa49v79f8dj
Image for cmekovpo7004d7xa4j1gkskwg
Image for cmekovpo7004e7xa4l3ufnk41
Image for cmekovpo7004f7xa4l59efc91
Image for cmekovpo7004g7xa4vu1ppfyc
Image for cmekovpo8004u7xa458h11htv
Image for cmekovpo8004s7xa4tb3vbbea
Image for cmekovpo8004t7xa47x94j560
Image for cmekovpo9004v7xa40r344ryn
Image for cmekovpo9004w7xa48vt5zdva
Image for cmekovpo9004x7xa4tpq2q6di
Image for cmekovpo9004y7xa4moe969b1
Image for cmekow0ac006h7xa4g7wfzztw
Image for cmekovpo900507xa4tvu75c0m
Image for cmekovpo900517xa40r0usj7u
Image for cmekovpo900537xa4zs03usnq
Image for cmekovpo900547xa4f86f41tp
Image for cmekovpo900557xa40dxlqm8y
Image for cmekovpo900567xa4gwih3px2
Image for cmekovpoa00587xa4fhopo37a
Image for cmekovpoa00597xa4xzt494r2
Image for cmekow0ab005y7xa4pg2u4svm
Image for cmekovpoa005b7xa4xvbz4db0
Image for cmekovpoa005c7xa4w2o59t2h
Image for cmekow0aa005f7xa4iki5juep
Image for cmekow0aa005g7xa4yqp609cx
Image for cmekow0aa005h7xa4zk2d0ipe
Image for cmekow0aa005i7xa46ooyy16x
Image for cmekow0aa005j7xa45bnulzf6
Image for cmekow0aa005k7xa41e939og7
Image for cmekow0aa005l7xa4vi30dh1x
Image for cmekow0aa005m7xa4tfldlpe4
Image for cmekow0aa005n7xa4uk2qudhp
Image for cmekow0aa005e7xa49bokuxv5
Image for cmekow0ab005z7xa440jz3ubc
Image for cmekow0ab00607xa4yse4qm1w
Image for cmekow0ab00617xa4kic70dqd
Image for cmekow0ac006c7xa46wiodo66
Image for cmekow0ac006d7xa4lfttym48
Image for cmekow0ac006e7xa4xd8t51l9
Image for cmekow0ac006f7xa4j5s1mrt3
Image for cmekow0ac006g7xa4zsft29o4
Image for cmekow0ad006i7xa4k5xwwmrd
Image for cmekow0ad006j7xa4y8yxpgyp
Image for cmekow0ad006k7xa4amgqa3xv
Image for cmekow0ad006l7xa40axa5plc

このレポートが参考になりましたか?

あなたの仕事の調査業務をワンボタンでレポートにできます。

無料でリサーチ

🔍 詳細

🏷はじめに:オープンソースAIが拓く分子設計の新時代

画像 1

はじめに:オープンソースAIが拓く分子設計の新時代

創薬や材料開発の世界は今、大きな変革の時代を迎えています。これまで、新しい分子の設計は専門家の経験や知識、そして膨大な数の既存化合物をスクリーニングするという、時間とコストのかかる試行錯誤の連続でした
mi-6.co.jp
。しかし、生成AI(Generative AI)の登場が、この伝統的なプロセスを根底から覆そうとしています。もはや「既存の候補から何を選ぶか」ではなく、「次に何を創るべきか」を問い、コンピュータがゼロから最適な分子を設計する時代が到来したのです
neovarsity.org
。
この技術革新の波をさらに加速させているのが、「オープンソース」の力です。かつては一部の専門家や巨大企業のものであった最先端のAIツールが、今では世界中の研究者や開発者に開かれています。その象徴的な存在が、NVIDIAが提供する「BioNeMo」プラットフォームです
nvidia.com
。BioNeMoは、分子の特性予測や構造設計に特化したAIモデルを構築・トレーニングするためのオープンソースのフレームワークを提供しており、研究者はこれを活用して、自身の研究テーマに合わせた独自のAIアプリケーションを開発できます
nvidia.com
。このようなオープンソースの取り組みは、研究開発の民主化を促し、これまで不可能だった規模と速度でのイノベーションを可能にしています。
では、これらのAIは具体的にどのようにして新しい分子を「創造」するのでしょうか。そのプロセスは、まず分子をコンピュータが理解できる言語に翻訳することから始まります。最も一般的に用いられるのが「SMILES」と呼ばれるテキスト形式で、これにより複雑な化学構造を一行の文字列として表現できます
neovarsity.org
qiita.com
。AIは、このSMILESのような表現形式を学習することで、化学の文法を理解し、新しい「文章」、すなわち新しい分子構造を生成する能力を獲得します。
AIが新しい分子を構築する際には、原子を一つずつ配置したり、既知の分子断片(フラグメント)を組み合わせたり、あるいは実際の化学反応をシミュレートしたりと、様々な戦略が用いられます
neovarsity.org
。そして、生成された分子は、「スコアリング」というプロセスで評価されます。このスコアは、薬としての有効性(効力)、体内での吸収のしやすさ(バイオアベイラビリティ)、合成のしやすさといった複数の指標を組み合わせて算出され、AIはこのスコアを最大化するように学習を進めていきます
neovarsity.org
。
この学習と生成のサイクルを支えるのが、変分オートエンコーダ(VAE)や敵対的生成ネットワーク(GAN)、強化学習(RL)といった深層学習モデルです
neovarsity.org
。これらのモデルは、膨大な化合物データベースから構造と特性の関係を学び、10の60乗以上ともいわれる広大な化学空間を効率的に探索し、有望な分子候補を提案します
neovarsity.org
。
オープンソースの分子生成AIが拓く未来は、単なる研究の効率化に留まりません。将来的には、AIが科学的な仮説を立て、候補分子を設計し、その合成プランをロボットに指示、得られた実験結果をフィードバックして自ら学習を深めていくという、完全に自律した創薬・材料設計ループの実現も視野に入っています
neovarsity.org
。
本レポートでは、このエキサイティングな分野で利用可能なオープンソースの分子生成AIモデルを具体的に紹介し、実際にそれらを活用するための方法を解説していきます。分子設計の新時代を切り拓くための第一歩を、ここから一緒に踏み出しましょう。
copy url
source logoneovarsity.org
Read more here!
Pareto front analysis
Monte Carlo sampling
Epsilon-greedy strategies
LinkedIn
#FutureThroughDeepTech
copy url
nvidia.comnvidia.com

🏷目的別に選ぶ!主要オープンソース分子生成AIモデルカタログ

画像 1

目的別に選ぶ!主要オープンソース分子生成AIモデルカタログ

AIによる分子生成技術は、創薬や新素材開発のプロセスを劇的に加速させる可能性を秘めています。かつては専門家による膨大な試行錯誤が必要だった分子設計の領域で、今やオープンソースの生成AIが次々と登場し、誰でも最先端の研究にアクセスできる環境が整いつつあります。しかし、その選択肢は多岐にわたり、タンパク質の構造予測から特定の物性を持つポリマーの設計まで、目的によって最適なツールは異なります
mi-6.co.jp
。
このカタログでは、あなたの研究開発の目的に合わせて最適なモデルを選べるよう、主要なオープンソース分子生成AIをその特徴と具体的な使い方と共に紹介します。

生体分子の3D構造と相互作用を解き明かすモデル

医薬品開発の第一歩は、ターゲットとなるタンパク質の構造や、それと候補化合物がどのように結合する(ドッキングする)かを理解することから始まります。この領域では、驚異的な精度を誇るモデルがオープンソースとして公開され、研究を力強く後押ししています。
  • Boltz (Boltz-1, Boltz-2) Google DeepMind社のAlphaFold3に匹敵、あるいは凌駕する性能を持つ初の完全オープンソースモデルとして大きな注目を集めているのがBoltzです
    aibase.com
    。Boltz-1はタンパク質、RNA、DNA、小分子の3D構造を高精度に予測します
    huggingface.co
    。最新のBoltz-2ではさらに進化し、構造予測に加えて、分子間の結合親和性(アフィニティ)まで予測可能になりました。これにより、物理ベースの計算手法に比べて1000倍も高速に、リード化合物の最適化やヒット探索といった創薬の初期段階で非常に強力なスクリーニングが実現できます
    github.com
    。
    主な用途:
    • タンパク質など生体分子の3D構造予測
    • 候補化合物とターゲットタンパク質の結合親和性予測
    • ヒット探索からリード最適化までのバーチャルスクリーニング
    使い方(実践ガイド): Boltzはpipコマンドで簡単にインストールできます。GPU環境(CUDA)での利用が推奨されています。
    # CUDA環境がある場合
    pip install boltz[cuda] -U
    
    推論は、予測したい内容を記述したYAMLファイルを入力としてコマンドラインで実行します。
    boltz predict input_path --use_msa_server
    
    詳細な入力フォーマットやオプションについては、公式の予測手順ドキュメントで確認できます
    github.com
    。
  • NVIDIA BioNeMo Framework NVIDIAが提供するBioNeMoは、創薬のためのAIモデル開発を加速する包括的なオープンソースフレームワークです
    prtimes.jp
    。このフレームワークの大きな特徴は、AlphaFold2(タンパク質構造予測)やDiffDock(分子ドッキング)といった業界をリードするモデルを、NVIDIA NIM (NVIDIA Inference Microservices) という最適化された形で簡単に利用できる点です。これにより、研究者は複雑な環境構築なしに、高速化された推論をオンプレミスやクラウドで実行できます
    prtimes.jp
    。
    主な用途:
    • タンパク質の3D構造予測 (AlphaFold2)
    • 分子ドッキング・ポーズ予測 (DiffDock 2.0)
    • 新規タンパク質設計 (RFdiffusion, ProteinMPNN)
    使い方(実践ガイド): BioNeMoは主にDockerコンテナとして配布されており、以下のコマンドで環境を起動できます
    github.com
    。
    docker run --rm -it \
      --gpus=all --ipc=host --ulimit memlock=-1 --ulimit stack=67108864 \
      nvcr.io/nvidia/clara/bionemo-framework:nightly \
      /bin/bash
    
    ローカルでの開発環境構築や具体的なモデルの利用方法については、公式の
    github.com
    やドキュメントで詳細なガイドが提供されています
    github.com
    。

言語モデル(LLM)で化学の限界を超えるモデル

近年、自然言語処理で大きな成果を上げている大規模言語モデル(LLM)が、分子設計の分野にも応用されています。分子構造を特殊な文字列(SMILES)として扱うことで、まるで新しい文章を生成するように、新しい分子を設計することが可能になりました
mi-6.co.jp
。
  • MolecularGPT 少量のデータ(Few-Shot)で分子の特性を予測することに特化したオープンなLLMです
    arxiv.org
    。創薬研究では、特定の性質を持つ化合物のデータが少ししかないケースが頻繁にありますが、MolecularGPTはこのような状況で真価を発揮します。わずか数個のサンプルを提示するだけで、新しい分子特性予測タスクに適応し、標準的なグラフニューラルネットワークを上回る性能を示すこともあります
    arxiv.org
    。
    主な用途:
    • 少量データからの分子特性予測(分類・回帰)
    • In-Context Learningによる新規タスクへの迅速な適応
    使い方(実践ガイド): 環境構築はcondaとpipで行います。公式リポジトリには環境構築用のシェルスクリプトが用意されています
    github.com
    。
    conda create -n MolecularGPT python==3.10
    conda activate MolecularGPT
    bash init_env.sh
    
    学習済みのモデルとLoRAウェイトはHugging Faceからダウンロード可能で、それらを用いて下流タスクのテストをPythonスクリプトで実行できます。具体的なデータ準備やトレーニング、テストの手順は
    github.com
    で詳細に解説されています
    github.com
    。
  • ether0 「自然言語で分子を設計する」というコンセプトを推し進めた、化学推論に特化したAIモデルです
    ledge.ai
    。このモデルは、化学的な問いに答えたり、指示に基づいて分子構造を生成したりする能力を持っています。検証可能な報酬を用いた強化学習(RLVR)という独自の手法でトレーニングされており、科学エージェントの実現に向けた一歩として期待されています
    github.com
    。
    主な用途:
    • 自然言語による分子設計
    • 化学的な質問応答と推論
    • SMILES表現の生成と補完
    使い方(実践ガイド): Hugging Faceで公開されているモデルは、
    transformers
    ライブラリを使って簡単にロードできます。
    from transformers import AutoModelForCausalLM, AutoTokenizer
    model = AutoModelForCausalLM.from_pretrained("futurehouse/ether0")
    tokenizer = AutoTokenizer.from_pretrained("futurehouse/ether0")
    
    また、リポジトリには部分的なSMILES文字列を検証・補完する報酬関数など、ユニークなユーティリティが含まれており、
    pip install git+https://github.com/Future-House/ether0.git
    でインストールして試すことができます
    github.com
    。

特定の目的に特化した強力な設計ツール

新規分子のde novo設計や既存分子の最適化など、より具体的なタスクに焦点を当てたツールも数多く開発されています。
  • REINVENT4 強化学習(RL)を用いて、ユーザーが定義した複数の目的に合致する分子を効率的に生成するAIツールです
    github.com
    。新規分子の設計(de novo design)だけでなく、既存分子の骨格を変える足場ホッピング(scaffold hopping)や、特定の部分構造を置き換えるR-グループ置換など、創薬化学者が日常的に行う多様なタスクをサポートします。
    主な用途:
    • 多目的最適化によるde novo分子設計
    • 足場ホッピング、R-グループ置換、リンカー設計
    • 転移学習による特定化学空間の探索
    使い方(実践ガイド): CondaでPython環境を構築後、専用のインストールスクリプトを実行します。CUDA環境が推奨されます
    github.com
    。
    conda create --name reinvent4 python=3.10
    conda activate reinvent4
    # リポジトリをクローン後
    python install.py cu124 
    
    実行は、設定を記述したTOMLファイルを引数として渡すことで行います。
    reinvent -l sampling.log sampling.toml
    
    設定ファイルのサンプルや、Jupyter Notebook形式のデモも豊富に用意されており、実践的に使い方を学ぶことができます
    github.com
    。

高分子(ポリマー)材料開発を自動化するライブラリ

創薬だけでなく、機能性材料の開発においても生成AIの活用が進んでいます。特にポリマー(高分子)の設計と物性予測を自動化するライブラリは、材料科学の探求を大きく前進させます。
  • RadonPy ポリマーの繰り返し単位の化学構造を入力するだけで、密度や熱伝導率、誘電率など15種類の物理特性を全自動で計算できる、初のオープンソースライブラリです
    github.com
    。分子モデリングから分子動力学(MD)シミュレーション、そして結果の解析までの一連のプロセスを自動化し、研究者の手間を大幅に削減します。
  • SMiPoly & PolyUniverse SMiPolyは、ダイセルと統計数理研究所が開発した、ルールベースで仮想ポリマーライブラリを生成するツールです
    nikkeibp.co.jp
    。22種類の重合反応ルールに基づいて、市販のモノマーから合成可能性の高いポリマー構造を網羅的に生成します
    github.com
    。PolyUniverseも同様にルールベースのアプローチで大規模なポリマーライブラリを生成し、学習済みモデルを用いてその特性を予測することができます
    github.com
    。
    主な用途:
    • ポリマーの物理特性の全自動計算 (RadonPy)
    • 合成可能な仮想ポリマーライブラリの網羅的生成 (SMiPoly, PolyUniverse)
    • 新規高機能ポリマー材料の探索
    使い方(実践ガイド): これらのライブラリは主に
    pip
    や
    conda
    でインストールできます。例えばRadonPyは、依存関係を含めてcondaでインストールするのが推奨されています
    github.com
    。
    conda install -c conda-forge/label/libint_dev -c conda-forge -c psi4 rdkit psi4 resp mdtraj matplotlib
    pip install radonpy-pypi
    
    各プロジェクトのGitHubリポジトリには、チュートリアルやサンプルスクリプトが用意されており、それらを参考に具体的な計算や生成プロセスを実行できます。
ここで紹介したモデルやツールは、分子設計と特性予測の世界でオープンソースとして利用できるものの一部にすぎません
github.com
,
github.com
。あなたの目的や課題に最も適したツールを見つけ、ぜひ研究開発に活用してみてください。これらの強力なAIが、未来の画期的な医薬品や新素材を生み出すための、信頼できるパートナーとなることでしょう。
copy url
source logoaibase.com
copy url
source logonikkeibp.co.jp
copy url
source logomi-6.co.jp
copy url
source logoledge.ai
copy url
source logoprtimes.jp
copy url
source logoledge.ai
copy url
source logogithub.com
Reinvent 4: Modern AI–driven generative molecule design
supports
Conda
PyTorch versions
Zenodo
TOML
native namespace packages
contrib
copy url
source logogithub.com
Molecular Optimization
Benchmarks
QED
SAscore
QEPPI
RAscore
Evaluation metrics
Molecular generative validation
https://github.com/AspirinCode/awesome-AI4ProteinConformation-MD
https://github.com/HHW-zhou/LLM4Mol
https://github.com/Peldom/papers_for_protein_design_using_DL
https://github.com/steven2358/awesome-generative-ai
https://github.com/amorehead/awesome-molecular-generation
https://github.com/dengjianyuan/Survey_AI_Drug_Discovery
https://github.com/3146830058/Geometry-Deep-Learning-for-Drug-Discovery-and-Life-Science
arXiv:2503.03965 (2025)
arXiv:2503.06687 (2025)
npj Comput Mater 9, 69 (2023)
code
arXiv:2505.16094 (2025)
code
ChemRxiv. (2025)
arXiv:2502.09511 (2025)
code
Nat Mach Intell 6, 589–604 (2024)
J. Chem. Inf. Model. (2024)
Drug Discovery Today (2024)
J. Am. Chem. Soc. (2024)
arXiv:2404.19230 (2024)
Applications of Generative AI (2024)
J. Chem. Inf. Model. (2024)
Quantitative Biology 12.1 (2024)
Applications of Generative AI. Cham: Springer International Publishing (2024)
arXiv:2402.08703 (2024)
code
J. Chem. Inf. Model. (2023)
ACS Med. Chem. Lett. (2023)
Drug Discovery Today (2023)
arXiv:2306.11768v2
Nat Biotechnol (2023)
JACS (2023)
Current Opinion in Structural Biology 79 (2023)
Current Opinion in Structural Biology 79 (2023)
Current Opinion in Structural Biology 79 (2023)
Current Opinion in Structural Biology 79 (2023)
Current Opinion in Structural Biology 79 (2023)
arXiv:2203.14500 (2022)
Cell Reports Medicine (2022)
ChemBioChem (2022)
Computational Molecular Science 12.5 (2022)
Chemistry of Materials 34.21 (2022)
Computers in Biology and Medicine 145 (2022)
Drug Discovery Today (2022)
J. Chem. Inf. Model. 2022, 62, 10, 2269–2279
Chemical Engineering Journal 444 (2022)
Current Opinion in Structural Biology 73 (2022)
Current Opinion in Structural Biology 72 (2022)
Journal of Molecular Modeling 27 (2021)
J. Chem. Inf. Model. 2021, 61, 11, 5343–5361
Journal of Medicinal Chemistry 64.19 (2021)
Briefings in bioinformatics 22.6 (2021)
Drug Discovery Today 26.11 (2021)
Molecular Systems Design & Engineering 4.4 (2019)
Science 361.6400 (2018)
https://github.com/LumosBio/MolData
Chem. Rev (2023)
chemrxiv-2024-gzq4r (2024)
J. Med. Chem. 2024
code
J. Chem. Inf. Model. 2023, 63, 11, 3238–3247
code
arXiv:2209.12487v1
code
Frontiers in pharmacology 11 (2020)
code
J. Chem. Inf. Model. 2019, 59, 3, 1096–1108
code
https://github.com/AspirinCode/DrugAI_Drug-Likeness
Nature Chem 4, 90–98 (2012)
code
International Journal of Molecular Sciences 22.20 (2021)
code
CIBCB. IEEE, (2021)
code
J Cheminform 1, 8 (2009)
code
Chemical Science 12.9 (2021)
code
J. Chem. Inf. Model. (2018)
code
J Cheminform 12, 35 (2020)
code
J Cheminform 16, 94 (2024)
code
J. Med. Chem. (2023)
chemrxiv-2023-nd1ll
code
chemrxiv-2023-c4867
code
J. Chem. Inf. Model. 2018, 58, 9, 1736–1741
code
J. Chem. Inf. Model. 2022, 62, 5, 1199–1206
code
J Cheminform 15, 112 (2023)
Chinese Journal of Chemistry(2023)
NeurIPS 2023 AI for Science Workshop. 2023 (2023)
code
J. Phys. Chem. B (2023)
International Conference on Machine Learning. PMLR (2021)
code
Digital Discovery (2024)
code
J. Chem. Inf. Model. (2024)
code
International Conference on Learning Representations. (2022)
code
arXiv:2506.06305 (2025)
code
arXiv:2506.15378 (2025)
code
J. Chem. Inf. Model. (2025)
ChemRxiv. (2024)
code
bioRxiv. (2024)
Nat Commun 15, 341 (2024)
code
arXiv:2403.07925. (2024)
code
NeurIPS 2023 AI4Science (2023)
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop (2023)][https://openreview.net/forum?id=Od1KtMeAYo
arXiv:2310.04915 (2023))
arXiv:2309.09985 (2023)
arXiv:2308.00237 (2023)
NeurIPS. (2022)
code
International Conference on Learning Representations. (2022)
code
Journal of Computational Chemistry 43.27 (2022)
code
Computers & Chemical Engineering (2024)
code
ChemRxiv. (2025)
J. Med. Chem. (2024)
code
Journal of Cheminformatics,16(20) (2024)
code
Journal of Chemical Information and Modeling 63.3 (2023)
web
Nat Commun 16, 2409 (2025)
code
J. Chem. Inf. Model. (2024)
code
Nat Commun 15, 3408 (2024)
code
chemrxiv-2024-x4wbl (2024)
code
arXiv:2312.01527 (2023)
code
Journal of Molecular Modeling 29.12 (2023)
code
Wiley Interdisciplinary Reviews: Computational Molecular Science (2023)
code
arXiv:2303.17615 (2023)
code
J Mol Model 29, 121 (2023)
code
chemrxiv-2023-lbvgn
code
BMC Bioinformatics (2023)
code
J Cheminform (2022)
code
Artificial Intelligence in Drug Design. Methods in Molecular Biology, vol 2390.(2022)
code
J. Chem. Inf. Model. (2022)
code
Paper
code
code
code
J. Chem. Inf. Model. (2020)
code
Nat Mach Intell 2, 254–265 (2020)
code
Science and Technology of Advanced Materials (2017)
code
AAAI 2025 Oral. (2025)
code
ChemRxiv. (2025)
code
ChemRxiv. (2024)
code
Nat Commun 15, 10127 (2024)
code
Commun Chem 7, 258 (2024)
code
Nat Commun 15, 3408 (2024)
code
CPT: Pharmacometrics & Systems Pharmacology. (2023)
code
chemrxiv-2023-jwmf3. (2023)
code
J Cheminform 15, 83 (2023)
code
chemrxiv-2023-cbq9k (2023)
Commun Biol 6, 956 (2023)
code
Research Square. (2023)
code
J Cheminform 15, 77 (2023)
code
Nat Commun 14, 114 (2023)
code
J. Chem. Inf. Model. (2022)
Web
BMC Chemistry 15, 8 (2021)
code
Mol Inform. 2018
code
Mol Inform. 2018
code
arXiv:2411.06608 (2025)
code
arXiv:2505.13791 (2025)
ChemRxiv. (2024)
code
arXiv:2405.17066 (2024)
code
Commun Biol 7, 1074 (2024)
code
Nat Mach Intell (2024)
Research Square. PREPRINT. (2023)
code
Digital Discovery (2024)
code
ICLR (2024)
code
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
Nat Comput Sci (2023)
code
Nat Mach Intell (2023)
code
J. Med. Chem. (2023)
code
arXiv:2301.11259v3
code
ICLR (2020)
arXiv:2001.09382
code
Commun Chem 8, 228 (2025)
code
arXiv:2405.06836 (2025)
AAAI-25 Technical Tracks (2025)
arXiv:2406.03686 (2024)
arXiv:2501.01073 (2025)
code
arXiv:2502.06891 (2025)
code
ChemRxiv. (2025)
code
Nat Commun 16, 2391 (2025)
code
arXiv:2502.05107 (2025)
code
Commun Chem 8, 40 (2025)
code
bioRxiv. (2025)
code
chemrxiv-2025-m82r5 (2025)
code
NeurIPS 2024 Workshop on AI for New Drug Modalities (2024)
code
Chemical Science (2024)
code
arXiv:2405.04912 (2024)
code
arXiv:2410.03494 (2024)
code
J. Pharm. Anal. (2024)
code
ChemRxiv. (2024)
code
Nat Comput Sci (2024)
code
arXiv:2410.21422 (2024)
code
ChemRxiv. (2024)
NeurIPS 2024 (Oral). (2024)
code
Nat Commun 15, 7315 (2024)
code
bioRxiv (2024)
Interdisciplinary Sciences: Computational Life Sciences (2024)
code
International Conference on Artificial Intelligence and Statistics. PMLR (2024)
Briefings in Functional Genomics (2024)
code
Digital Discovery (2024)
arXiv:2310.10773 (2023)
code
Patterns (2024)
code
J. Chem. Inf. Model. (2024)
code
chemrxiv-2024-r9ljm (2024)
code
arXiv:2402.17179 (2024)
arXiv:2402.11950 (2024)
code
bioRxiv (2024)
code
J. Chem. Inf. Model. (2024)
code
bioRxiv (2024)
arXiv:2401.01059 (2024)
code
arXiv:2312.04013. (2023)
arXiv:2311.14407. (2023)
code
International Journal of Molecular Sciences 24.23 (2023)
code
bioRxiv 2023.11.20.567951. (2023)
code
Bioinformatics: btad693. (2023)
code
bioRxiv 2023.11.11.566725. (2023)
code
chemrxiv-2023-xt65x (2023)
code
chemrxiv-2023-7v4sw (2023)
code
arXiv:2310.02902 (2023)
arXiv:2310.05365 (2023)
J Cheminform 15, 88 (2023)
code
arXiv:2310.02066. (2023)
chemrxiv-2023-jwmf3. (2023)
code
J. Chem. Inf. Model. (2023)
code
ECML PKDD (2023)
code
arXiv:2309.05853 (2023)
code
The Journal of Physical Chemistry A (2023)
code
arXiv:2305.10133 (2023)
code
Computers in Biology and Medicine (2023)
code
Nat Commun 14, 4552 (2023)
code
Molecular Informatics (2023)
code
Physical Chemistry Chemical Physics 25.3 (2023)
Nat Commun 14, 4217 (2023)
code
bioRxiv (2023)
code
arXiv:2302.07120 (2023)
code
J Cheminform 15, 59 (2023)
code
Briefings in Bioinformatics, 2023;, bbad185
code
Molecules 2023, 28(11), 4430
code
Sci Rep 13, 8799 (2023)
code
chemrxiv-2023-5kjvh
code
J. Chem. Inf. Model. (2023)
code
arXiv:2304.12400v1
code
Nat Mach Intell 5, 432–444 (2023)
code
J. Chem. Inf. Model. (2023)
code
arXiv:2302.07868v5
J Cheminform 15, 24 (2023)
code
Methods (2023)
code
Nat Mach Intell 4, 1256–1264 (2022)
code
PNAS Nexus (2022)
code
chemrxiv-2022-gln27
J. Chem. Inf. Model. 2022, 62, 9, 2064–2076
code
arXiv.2209.06158
code
Bioinformatics (2022)
code
arXiv:2210.08749v2
arXiv:2204.11817v3
code
arXiv:2202.01338v3
code
J. Chem. Inf. Model. 2022, 62, 9, 2064–2076
code
ESANN 2021
code
IJCNN52387.2021.9533439 (2021)
code
J. Chem. Inf. Model. 2021, 61, 12, 5804–5814
code
arXiv:2108.10307v1
code
J Cheminform 13, 26 (2021)
code
Sci Rep 11, 321 (2021)
code
RSC advances. 2021;11(42):25921-32.
code
Chemical Science 12.24 (2021)
code
Cell (2025)
code
Commun Chem 8, 238 (2025)
code
Commun Chem 8, 228 (2025)
code
arXiv:2507.20130 (2025)
Nat Commun 16, 5628 (2025)
code
Chem. Sci. (2025)
code
ChemRxiv. (2025)
code
bioRxiv. (2025)
code
ChemRxiv. (2024)
code
bioRxiv (2024)
J. Chem. Inf. Model. (2024)
code
arXiv:2405.00202 (2024)
Proceedings of the AAAI Conference on Artificial Intelligence. Vol. 38. No. 12. (2024)
code
Nat Commun 15, 2688 (2024)
code
arXiv:2402.16854. (2024)
Patterns 5.10 (2024)
code
arXiv:2402.11950 (2024)
code
Advanced Science (2024)
CPT: Pharmacometrics & Systems Pharmacology. (2023)
code
Expert Systems with Applications. (2023)
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
Research Square. (2023)
code
Nat Mach Intell 5, 754–764 (2023)
code
J. Chem. Inf. Model. (2023)
code
Computers in Biology and Medicine 157 (2023)
code
The Journal of Physical Chemistry A (2023)
code
Digital Discovery (2023)
code
Dataset
J. Med. Chem. (2023)
code
J Cheminform 15, 91 (2023)
Research Square. (2023)
code
chemrxiv (2023)
code
bioRxiv. (2023)
code
J. Chem. Inf. Model. (2023)
code
Commun Chem 6, 249 (2023)
chemrxiv (2023)
code
Molecular Informatics (2023)
code
chemrxiv-2023-5zmvw
code
bioRxiv (2023)
code
bioRxiv (2023)
code
J. Chem. Inf. Model. (2023)
code
Digital Discovery (2023)
code
Sci. Adv.9,eadg7865(2023)
code
J. Chem. Inf. Model. 2023
code
chemrxiv-2023-jsjwx
code
J. Chem. Inf. Model. (2023)
chemrxiv-2023-q8419-v2
code
J. Chem. Inf. Model. 2023, 63, 10, 2983–2991
code
Computer Vision and Machine Intelligence. Lecture Notes in Networks and Systems, vol 586. Springer (2023)
Society for Industrial and Applied Mathematics, 2023.
J. Chem. Inf. Model. (2023)
J Cheminform 15, 8 (2023)
code
Nat Mach Intell 4, 180–186 (2022)
code
PMLR 162:20459-20478, 2022
arXiv:2205.01592v1
J. Chem. Inf. Model. 2022, 62, 12, 2943–2950
code
J. Med. Chem. 2022, 65, 13, 9478–9492
code
Paper][https://arxiv.org/abs/2205.07309
code
NeurIPS 2022
arXiv:2106.15098v4
code
ICML (2022)
arXiv:2206.09010v1
code
J Cheminform 14, 83 (2022)
code
IEEE Transactions on Neural Networks and Learning Systems (2022)
code
2021] Grosnit, A., Tutunov, R., Maraval, A.M., Griffiths, R-R., Cowen-Rivers, A.I. et al.[arXiv:2106.03609v3
code
Nat Mach Intell 3, 76–86 (2021)
code
Chemical Science 12.24 (2021)
code
Journal of Computational Chemistry 42.11 (2021)
code
J Cheminform 12, 58 (2020)
code
Nat Biotechnol 37, 1038–1040 (2019)
code
arXiv:1910.13325v2
code
J Cheminform 10, 31 (2018)
code
Chemical Science 11, 2 (2020)
arXiv:1709.05501v6
code
ACS Cent. Sci. 2018
arXiv:1610.02415v3
code
J. Cheminform. (2024)
bioRxiv (2023)
code
International Conference on Artificial Intelligence and Statistics. PMLR (2024)
Patterns (2024)
code
J. Phys. Chem. Lett. (2024)
Digital Discovery (2024)
code
Computers in Biology and Medicine (2023)
code
ECML PKDD (2023)
code
Paper
code
Paper
code
J Cheminform 15, 42 (2023)
code
J Cheminform 15, 38 (2023)
code
Digital Discovery (2023)
code
Chemical science. 2022;13(9):2701-13.
code
J Cheminform 14, 40 (2022)
code
Briefings in Bioinformatics,July 2022, bbac285,
code
ESANN.(2021)
Molecular Informatics 40.10 (2021)
code
bioRxiv (2021)
code
J Cheminform 12, 2 (2020)
code
arXiv:1805.11973 (2018)
code
arXiv:1705.10843 (2017)
code
arXiv:2508.05411 (2025)
ICLR2025 (2025)
code
ICLR 2025 Workshop AI4MAT (2025)
code
arXiv:2504.08051 (2025)
code
ICLR (2025)
code
ICLR (2025)
arXiv:2409.19645 (2024)
ICML 2024 Workshop on Structured Probabilistic Inference & Generative Modeling (2024)
arXiv:2406.08506 (2024)
Nat Mach Intell (2024)
Research Square. PREPRINT. (2023)
code
J. Chem. Inf. Model. (2023)
code
arXiv:2310.03223. (2023)
Research Square. PREPRINT. (2023)
code
J. Med. Chem. (2023)
code
Machine Learning: Science and Technology (2023)
arXiv:2304.06779 (2023)
arXiv:2212.01575 (2022)
code
International Conference on Machine Learning. PMLR, (2022)
code
arXiv:2201.12419 (2022)
KDD '20 (2020)
code
arXiv:1905.11600 (2019)
arXiv:2508.12629 (2025)
code
arXiv:2410.07539 (2025)
ICLR (2025)
code
arXiv:2504.10564 (2025)
code
arXiv:2406.07266 (2025)
arXiv:2504.10564 (2025)
code
arXiv:2406.07266 (2025)
arXiv:2406.07266 (2024)
arXiv:2404.19739 (2024)
code
Nat Mach Intell 6, 1359–1369 (2024)
code
chemrxiv-2024-z5jnt (2024)
code
arXiv:2402.17179 (2024)
arXiv:2310.03253 (2023)
ChemRxiv. (2024)
code
NeurIPS 2024 (2024)
code
BMC Bioinformatics 25, 203 (2024)
code
arXiv:2206.07632v3
code
arXiv:2203.04698 (2022)
Transactions on Machine Learning Research (2024)
code
npj Comput Mater 9, 143 (2023)
code
arXiv:2306.14902v1
code
arXiv:2212.02404 (2022)
code
Paper
arXiv:2508.04180 (2025)
code
Advanced Science (2025)
arXiv:2405.16861 (2024)
code
Neurocomputing (2025)
arXiv:2507.20130 (2025)
bioRxiv (2025)
code
Nat Commun 16, 5628 (2025)
code
Nat Commun 16, 6043 (2025)
code
Nat Commun 16, 5991 (2025)
code
Chem. Sci. (2025)
code
arXiv:2505.10545 (2025)
J Cheminform 17, 93 (2025)
code
J Cheminform 17, 90 (2025)
code
arXiv:2505.20131 (2025)
ICLR 2025 (2025)
code
arXiv:2505.16365 (2025)
web
arXiv:2505.16790 (2025)
IEEE Journal of Biomedical and Health Informatics (2025)
J. Chem. Inf. Model. (2025)
code
bioRxiv. (2025)
ICML 2025 (2025)
code
Nat Mach Intell (2025)
code
arXiv:2504.20770 (2025)
code
ESANN (2025)
code
ICLR (2025)
arXiv:2406.10513 (2024)
code
J. Chem. Inf. Model. (2025)
bioRxiv (2024)
code
ChemRxiv. (2025)
code
Adv. Sci. (2025)
Digital Discovery (2025)
code
arXiv:2502.08598 (2025)
code
Digital Discovery (2025)
code
arXiv:2503.00975 (2025)
code
arXiv:2502.09571 (2025)
code
Bioinformatics Advances. (2025)
code
Nat. Mach. Intell. (2025)
code
arXiv:2501.06158 (2025)
code
ICML'24 Workshop ML for Life and Material Science: From Theory to Industry Applications. (2024)
code
NeuIPS 2024. (2024)
code
arXiv:2406.16821 (2024)
code
ICML 2024. (2024)
code
Neural Information Processing Systems 36 (2024)
bioRxiv. (2024)
code
Commun Chem 7, 150 (2024)
code
Nat Comput Sci (2024))
arXiv:2210.13695 (2022)
code
NeurIPS 2024. (2024)
Chemical Science (2024)
code
arXiv:2411.04130 (2024)
code
J. Pharm. Anal. (2024)
code
arXiv:2410.13597 (2024)
arXiv:2410.10108 (2024)
NeurIPS 2024 (Oral). (2024)
code
BMC Bioinformatics 25, 203 (2024)
code
J. Chem. Inf. Model. (2024)
Chem. Sci. (2024)
First Conference on Language Modeling (2024)
code
arXiv:2408.09896 (2024)
code
arXiv:2407.13981 (2024)
Computers in Biology and Medicine 180 (2024)
code
bioRxiv 2024.07.17.603873 (2024)
code
ICML (2024)
code
arXiv:2405.14925 (2024)
chemrxiv-2024-km0h1 (2024)
ICASSP 2024-2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE (2024)
IEEE Transactions on Artificial Intelligence (2024)
arXiv:2306.13957 (2023)
Nat Mach Intell (2024)
code
Research Square (2024)
arXiv:2404.02003 (2024)
ICASSP 2024-2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE (2024)
Nat Commun 15, 2657 (2024)
code
arXiv:2403.07179. (2024)
code
J. Chem. Inf. Model. (2024)
code
Advances in Neural Information Processing Systems 36 (2024)
AAAI 2024 (2024)
code
arXiv:2402.15864 (2024)
arXiv:2402.13040 (2024)
code
arXiv:2401.13858 (2024)
code
International Conference on Learning Representations (ICLR). (2024)
code
Briefings in Bioinformatics. (2023)
code
NeurIPS 2023 AI for Science Workshop. (2023)
NeurIPS 2023. (2023)
code
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
arXiv:2310.04463 (2023)
bioRxiv (2023)
arXiv:2310.00475 (2023)
arXiv:2309.17296v1 (2023)
bioRxiv (2023)
data
arXiv:2308.11890 (2023)
chemrxiv-2023-ltr9v-v2. (2023)
code
ICML (2023)
code
ICML(2023)
code
ICML (2023)
code
ICML (2023)
code
arXiv:2305.12347 (2023)
code
arXiv:2301.00427 (2023)
code
J. Chem. Inf. Model. (2023)
arXiv:2304.10905v1
code
Nat Comput Sci (2023)
chemrxiv-2023-z8ltp
code
arXiv:2304.12400v1
code
arXiv:2305.01140v1
code
ICLR (2023)
code
arXiv:2210.05274 (2022)
code
arXiv:2302.09048 (2023)
code
arXiv:2302.04313 (2023)
code
arXiv:2209.05710 (2022)
NeurIPS (2022)
International Conference on Machine Learning. PMLR, (2022)
code
J. Chem. Inf. Model. (2025)
code
Nat Commun 16, 5485 (2025)
code
arXiv:2505.20131 (2025)
arXiv:2405.06836 (2025)
bioRxiv. (2025)
code
arXiv:2505.08774 (2025)
code
bioRxiv. (2025)
code
AAAI-25 Technical Tracks (2025)
arXiv:2406.03686 (2024)
J Cheminform 17, 54 (2025)
code
Sci Rep 15, 13445 (2025)
code
J. Chem. Inf. Model. (2025)
code
Commun Chem 8, 40 (2025)
code
ChemRxiv. (2024)
ChemRxiv. (2024)
code
Sci Rep 15, 13445 (2025)
code
Nat Commun 15, 10127 (2024)
code
J. Med. Chem. (2024)
Digital Discovery (2024)
code
arXiv:2410.11527 (2024)
code
arXiv:2405.17066 (2024)
code
arXiv:2410.10431 (2024)
Journal of Computer-Aided Molecular Design 38.1 (2024)
code
JACS Au (2024)
code
arXiv:2403.20109 (2024)
code
chemrxiv-2024-r9ljm (2024)
code
arXiv:2402.14315 (2024)
Chemical Science (2024)
code
arXiv:2401.09840 (2024)
code
J. Chem. Inf. Model. (2024)
code
J. Chem. Inf. Model. (2024)
code
Expert Systems with Applications (2024)
J. Chem. Inf. Model. (2024)
code
Bioinformatics: btad693. (2023)
code
J. Chem. Inf. Model. (2023)
code
NeurIPS 2023 (2023)
code
chemrxiv-2023-xt65x (2023)
code
chemrxiv-2023-7v4sw (2023)
code
Chemical Science (2023)
code
arXiv:2310.02902 (2023)
arXiv:2310.05365 (2023)
J Cheminform 15, 83 (2023)
code
Commun Biol 6, 956 (2023)
code
Briefings in Bioinformatics (2023)
code
Journal of Chemical Theory and Computation (2023)
code
Computers in Biology and Medicine 157 (2023)
code
J Cheminform 15, 77 (2023)
code
chemrxiv-2023-j740w (2023)
code
J. Chem. Inf. Model. (2023)
code
arXiv:2303.17615 (2023)
code
Bioinformatics 39.4 (2023)
code
chemrxiv (2023)
code
bioRxiv (2023)
code
arXiv:2306.08166 (2023)
code
J Mol Model 29, 121 (2023)
code
J. Chem. Inf. Model. (2023)
code
Sci Rep 13, 8799 (2023)
code
Research Square. (2023)
code
chemrxiv-2023-qmqmq-v3
code
Paper
code
chemrxiv-2023-m77vk
code
ACS omega (2023)
code
Bioinformatics 39.4 (2023)
code
J Cheminform 15, 24 (2023)
code
J Cheminform 15, 8 (2023)
code
Commun Chem 5, 129 (2022)
code
J Cheminform 14, 68 (2022)
code
J Cheminform 14, 83 (2022)
code
J. Chem. Inf. Model. 2022, 62, 20, 4863–4872
code
J. Chem. Inf. Model. 2022, 62, 23, 5907–5917
code
bioRxiv (2022)
J. Chem. Inf. Model. 2022, 62, 17, 4032–4048
code
Nat Mach Intell 4, 739–748 (2022)
code
Nat Mach Intell 4, 555–563 (2022)
code
arXiv:2205.10473 (2022)
Sci Rep 10, 22104 (2020)
code
arXiv:2202.00658 (2022)
Neural Information Processing Systems 34 (2021)
code
J. Chem. Inf. Model. 2021, 61, 12, 5815–5826
code
Journal of cheminformatics 12.1 (2020)
code
J Cheminform 12, 53 (2020)
code
nternational Conference on Machine Learning. PMLR (2020)
code
Nat Biotechnol 37, 1038–1040 (2019)
code
J Cheminform 9, 48 (2017)
code
arXiv:2301.11259 (2023)
code
Commun Chem 8, 238 (2025)
code
arXiv:2505.12913 (2025)
Nat Comput Sci (2024)
code
chemrxiv-2024-623lx (2024)
code
chemrxiv-2024-sr1v6 (2024)
code
J. Chem. Inf. Model. (2024)
code
Chemical Science (2024)
code
Sci Rep 13, 21069 (2023)
code
chemrxiv-2023-wgl32 (2023)
code
arXiv:2309.05853 (2023)
code
J. Chem. Inf. Model. (2025)
code
Nat Commun 16, 6198 (2025)
code
ICLR (2025)
code
arXiv:2410.08833 (2024)
code
J. Chem. Inf. Model. (2024)
code
Commun Biol 7, 1074 (2024)
code
chemrxiv-2024-l2969 (2024)
code
Nat Mach Intell 6, 338–353 (2024)
code
chemrxiv-2024-4719t (2024)
code
Chemical Science (2023)
code
Wiley Interdisciplinary Reviews: Computational Molecular Science (2023)
code
J. Chem. Inf. Model. (2023)
chemrxiv-2023-q8419-v2
code
Chemical science 10.12 (2019)
Nat Commun 16, 3262 (2025
code
Bioinformatics (2024)
code
arXiv:2405.17066 (2024)
code
Briefings in Functional Genomics (2024)
code
Patterns (2024)
code
chemrxiv-2024-lcm83. (2024)
J. Chem. Inf. Model. (2024)
code
arXiv:2310.09267 (2023)
J. Chem. Inf. Model. (2023)
code
J. Chem. Inf. Model. (2023)
code
Advances in Neural Information Processing Systems 35 (2022)
code
Sci Rep 11, 17304 (2021)
Chemical science 10.12 (2019)
J. Chem. Inf. Model. 2019, 59, 10, 4077–4082
Cell (2025)
code
Nat Commun 16, 2409 (2025)
code
ICLR 2025 (2025)
code
Bioinformatics (2024)
code
arXiv:2408.07155 (2024)
code
Proceedings of the Genetic and Evolutionary Computation Conference (2023)
code
J Cheminform 14, 3 (2022)
code
ICLR 2025 (2025)
code
arXiv:2505.23987 (2025)
code
arXiv:2505.08774 (2025)
code
Nat Commun 16, 4416 (2025)
arXiv:2407.07930 (2024)
code
Sci Rep 15, 13445 (2025)
code
arXiv:2503.12602 (2025)
code
arXiv:2410.20182 (2025)
code
J Cheminform 17, 36 (2025)
code
arXiv:2503.01376 (2025)
arXiv:2502.07237 (2025)
code
ICLR 2025 (2025)
code
Chemical Science (2024)
code
Sci Rep 15, 13445 (2025)
code
First Conference on Language Modeling (2024)
code
arXiv:2408.09730 (2024)
The Twelfth International Conference on Learning Representations (2024)
code
chemrxiv-2024-0ckgt (2024)
chemrxiv-2024-0bcn5 (2024)
code
J Cheminform 16, 55 (2024)
code
chemrxiv-2024-v3qww (2024)
Journal of Computer-Aided Molecular Design 38.1 (2024)
code
arXiv:2401.10334 (2023)
code
Nat Mach Intell 5, 1447–1457 (2023)
code
arXiv:2410.20182 (2025)
code
arXiv:2408.09896 (2024)
code
arXiv:2402.13040 (2024)
code
Computers and Education: Artificial Intelligence (2023)
Nat Mach Intell 5, 1447–1457 (2023)
code
bioRxiv (2023)
code
bioRxiv (2023)
code
arXiv:2306.11976v1
code
arXiv:2306.08018v1
code
arXiv:2301.11259v3
code
J Cheminform 17, 93 (2025)
code
ChemRxiv. (2025)
code
chemrxiv-2024-8qj17 (2024)
Chem. Sci., (2024)
code
Nat Commun 15, 3636 (2024)
code
Briefings in Bioinformatics 22.6 (2021)
code
Future Science OA 7.6 (2021)
code
ChemRxiv. (2024)
code
arXiv:2410.21422 (2024)
code
J. Chem. Inf. Model. (2023)
code
J. Chem. Inf. Model. (2023)
code
Nat Mach Intell 5, 432–444 (2023)
arXiv:2202.01338v3
code
arXiv:2301.11259v3
code
Available at SSRN 4345811 (2023)
code
Nat Commun 14, 114 (2023)
code
Methods (2023)
code
Briefings in Bioinformatics 23.4 (2022)
code
J. Chem. Inf. Model. 2022, 62, 6, 1411–1424
Web
Nat Mach Intell 4, 1256–1264 (2022)
code
J Cheminform 14, 68 (2022)
code
Artificial Intelligence in Drug Design (2022)
code
J. Chem. Inf. Model. 2023, 63, 6, 1734–1744
chemrxiv-2022-gln27
J. Chem. Inf. Model. 2022, 62, 9, 2064–2076
code
arXiv:2210.08749 (2022)
arXiv:2204.11817 (2022)
code
CBMS. IEEE, (2021)
code
code
code
BMC chemistry 15.1 (2021)
code
J. Chem. Inf. Model. 2022, 62, 9, 2064–2076
code
ESANN. 2021
code
IJCNN. IEEE, (2021)
code
J. Chem. Inf. Model. 2021, 61, 12, 5804–5814
code
arXiv:2108.10307 (2021)
code
J Cheminform 13, 26 (2021)
code
RSC advances 11.42 (2021)
code
Chemical Science 12.24 (2021)
code
J. Chem. Inf. Model. 2020, 60, 3, 1175–1183
code
arXiv:2001.09382 (2020)
code
Nat Mach Intell 2, 254–265 (2020)
code
Molecular informatics 37.1-2 (2018)
code
Molecular informatics 37.1-2 (2018)r
code
Science and technology of advanced materials 18.1 (2017)
arXiv:1710.00616v1
code
arXiv:2207.00821 (2022)
code
Chemical science 12.43 (2021)
code
Advanced Science (2025)
arXiv:2405.16861 (2024)
code
arXiv:2507.20130 (2025)
J. Chem. Inf. Model. (2025)
code
bioRxiv (2025)
code
Nat Commun 16, 5485 (2025)
code
Chem. Sci. (2025)
code
J Cheminform 17, 93 (2025)
code
J Cheminform 17, 90 (2025)
code
arXiv:2405.06836 (2025)
bioRxiv. (2025)
code
bioRxiv. (2025)
J. Chem. Inf. Model. (2025)
bioRxiv (2024)
code
arXiv:2504.10564 (2025)
code
arXiv:2503.00975 (2025)
code
arXiv:2503.01376 (2025)
Bioinformatics Advances. (2025)
code
Nat Mach Intell (2025)
code
arXiv:2502.05107 (2025)
code
ICML 2024. (2024)
code
NeuIPS 2024. (2024)
code
bioRxiv. (2024)
code
Chemical science (2024)
code
J. Chem. Inf. Model. (2024))
code
Nat Comput Sci (2024))
arXiv:2210.13695 (2022)
code
J. Chem. Inf. Model. (2024)
J. Cheminform. (2024)
bioRxiv (2023)
code
Bioinformatics (2024)
code
Chemical Science (2024)
code
Chemical Science (2024)
code
bioRxiv (2024)
code
Nat Comput Sci (2024)
code
arXiv:2409.19645 (2024)
ChemRxiv. (2024)
arXiv:2410.10108 (2024)
Chem. Sci. (2024)
Commun Biol 7, 1074 (2024)
code
arXiv:2408.09730 (2024)
arXiv:2408.06050 (2024)
code
arXiv:2407.13981 (2024)
https://doi.org/10.26434/chemrxiv-2024-0ckgt
Computers in Biology and Medicine 180 (2024)
code
chemrxiv-2024-8qj17 (2024)
J. Chem. Inf. Model. (2024)
code
Chem. Sci., (2024)
code
Nat Commun 15, 3636 (2024)
code
J Cheminform 16, 55 (2024)
code
arXiv:2406.08980 (2024)
code
arXiv-2406 (2024)
code
Nat Commun 15, 3408 (2024)
code
IEEE Transactions on Artificial Intelligence (2024)
arXiv:2306.13957 (2023)
Research Square (2024)
arXiv:2404.02003 (2024)
Nat Commun 15, 2688 (2024)
code
Nat Commun 15, 2657 (2024)
code
J. Chem. Inf. Model. (2024)
code
Nat Mach Intell (2024)
Research Square. PREPRINT. (2023)
code
arXiv:2402.14315 (2024)
bioRxiv (2024)
Nat. Compt. Sci, (2023)
code
Nat. Mach. Intell. (2023)
code
Briefings in Bioinformatics. (2023)
code
ACS Cent. Sci. (2023)
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
J. Chem. Inf. Model. (2023)
code
Chemical Science 14.6 (2023)
Research Square. (2023)
code
Chemical Science (2023)
code
bioRxiv (2023)
chemrxiv-2023-3b9p3 (2023)
ICML'23: Proceedings of the 40th International Conference on Machine Learning (2023)
code
Nat Comput Sci (2023)
code
chemrxiv-2023-54bss. (2023)
arXiv:2310.03223. (2023)
chemrxiv-2023-jwmf3. (2023)
code
J. Chem. Inf. Model. (2023)
code
chemrxiv-2023-cbq9k (2023)
arXiv:2309.05853 (2023)
code
Nat Mach Intell (2023)
code
arXiv:2308.07413 (2023)
arXiv:2305.10133 (2023)
code
bioRxiv. (2023)
code
Nat Commun 14, 4217 (2023)
code
Machine Learning: Science and Technology (2023)
arXiv:2304.06779 (2023)
arXiv:2306.13957 (2023)
bioRxiv (2023)
code
arXiv:2302.07120 (2023)
code
ICML (2023)
code
J. Chem. Inf. Model. (2023)
code
Sci. Adv.9,eadg7865(2023)
code
Journal of Chemical Information and Modeling (2023)
code
chemrxiv-2023-jsjwx
code
chemrxiv-2023-lv2m1
code
The Eleventh International Conference on Learning Representations. (2023)
code
J Cheminform 15, 38 (2023)
code
The Eleventh International Conference on Learning Representations. (2023)
code
arXiv:2302.07868 (2023)
Bioinformatics 38.21 (2022)
code
Nat Mach Intell 4, 1130–1142 (2022)
code
Advances in Neural Information Processing Systems 35 (2022)
code
Bioinformatics 38.Supplement_2 (2022)
code
Journal of Medicinal Chemistry 65.13 (2022)
code
arXiv:2209.06158 (2022)
code
arXiv:2205.10473 (2022)
PNAS Nexus 1.4 (2022)
code
arXiv:2206.09010 (2022)
code
International Conference on Machine Learning. PMLR, (2022)
code
Sci Rep 10, 22104 (2020)
code
Journal of Medicinal Chemistry 65.20 (2022)
code
J. Chem. Inf. Model. 2022, 62, 10, 2280–2292
code
bioRxiv (2022)
arXiv:2209.13865 (2022)
code
Chemical science 12.41 (2021)
Sci Rep 11, 321 (2021)
code
arXiv:2111.04107 (2021)
Advances in Neural Information Processing Systems 34 (2021)
code
J. Chem. Inf. Model. 2021, 61, 7, 3304–3313
code
Chem. Sci. (2025)
code
chemrxiv-2023-xt65x (2023)
code
bioRxiv (2023)
Briefings in Bioinformatics. (2023)
code
J Cheminform 15, 91 (2023)
Research Square. (2023)
code
ICML (2023)
code
J Cheminform 15, 24 (2023)
code
Bioinformatics 39.1 (2023)
code
arXiv:2205.10473 (2022)
J. Chem. Inf. Model. 2022, 62, 9, 2046–2063
code
arXiv:2103.03864 (2021)
J Cheminform 13, 87 (2021)
code
J. Chem. Inf. Model. 2021, 61, 10, 4900–4912
code
J. Phys. Chem. B 2021, 125, 44, 12166–12176
code
J Cheminform 12, 38 (2020)
chemrxiv.11638383.v1
code
Chemical science 11.4 (2020)
code
ICML'23: Proceedings of the 40th International Conference on Machine Learning (2023)
code
arXiv:2305.19303 (2023)
The Eleventh International Conference on Learning Representations. (2023)
code
arXiv:2302.01129 (2023)
code
arXiv:2103.03864 (2021)
International conference on machine learning. PMLR, (2020)
code
Cell (2025)
code
Commun Chem 8, 228 (2025)
code
Nat Commun 16, 6198 (2025)
code
arXiv:2411.06608 (2025)
code
bioRxiv. (2025)
ICLR 2025 Workshop AI4MAT (2025)
code
arXiv:2504.10564 (2025)
code
ChemRxiv. (2025)
ICML 2024 Workshop ML4LMS (2024)
code
ICML 2024 (2024)
code
Chemical science (2024)
code
ChemRxiv. (2024)
code
Commun Chem 7, 258 (2024)
code
arXiv:2408.09730 (2024)
arXiv:2404.00014 (2024)
code
Nat Commun 15, 4993 (2024)
code
Digital Discovery (2024)
arXiv:2310.10773 (2023)
code
arXiv:2401.09840 (2024)
code
ACS Cent. Sci. (2023)
NeurIPS 2023 Generative AI and Biology (GenBio) Workshop. (2023)
code
Chemical Science (2023)
code
Advanced Intelligent Systems (2023)
code
J. Chem. Inf. Model. (2023)
code
Computers in Biology and Medicine 157 (2023)
code
Computers in Biology and Medicine 157 (2023)
code
J. Chem. Inf. Model. (2023)
code
chemrxiv-2023-5zmvw
code
code
J. Chem. Inf. Model. 2023, 63, 11, 3319–3327
code
chemrxiv-2023-m77vk
code
Bioinformatics (2023)
code
Molecular Informatics (2023)
arXiv:2301.01829 (2023)
code
Journal of Medicinal Chemistry 65.20 (2022): 13771-13783
code
J. Chem. Inf. Model. 2022, 62, 10, 2280–2292
code
bioRxiv (2022)
SDM. Society for Industrial and Applied Mathematics, (2022)
arXiv:2202.00658 (2022)
Advances in Neural Information Processing Systems 34 (2021)
code
J. Chem. Inf. Model. 2021, 61, 6, 2547–2559
code
International Conference on Artificial Intelligence and Statistics. PMLR, (2020)
code
International conference on machine learning. PMLR, (2020)
code
arXiv:1910.13325 (2019)
code
ChemRxiv. (2025)
Nat Mach Intell (2024)
code
J. Chem. Inf. Model. (2024)
code
NeurIPS 2023. (2023)
code
chemrxiv-2023-j740w (2023)
code
arXiv:2306.08166 (2023)
code
J. Chem. Inf. Model. 2023, 63, 10, 2918–2927
code
arXiv:2210.05274 (2022)
code
J. Chem. Inf. Model. 2022, 62, 23, 5907–5917
code
arXiv:2205.07309 (2022)
code
Artificial Intelligence in the Life Sciences 2 (2022)
J. Chem. Inf. Model. 2020, 60, 4, 1983–1995
code
Chemical science 11.31 (2020)
code
arXiv:2507.02752 (2025)
arXiv:2505.08774 (2025)
code
ICLR2025 (2025)
code
arXiv:2503.12602 (2025)
code
ChemRxiv. (2025)
code
ICLR (2025)
code
J. Chem. Inf. Model. (2023)
code
Proceedings of the Genetic and Evolutionary Computation Conference (2023)
code
arXiv:2303.06965 (2023)
code
Advanced Science (2023)
code
J. Chem. Inf. Model. 2022, 62, 15, 3565–3576
code
Journal of Medicinal Chemistry 65.18 (2022)
code
The Journal of Chemical Physics 156.4 (2022)
code
J. Chem. Inf. Model. 2022, 62, 15, 3565–3576
J. Chem. Inf. Model. 2022, 62, 9, 2151–2163
code
chemrxiv-2021-jkhzw-v2
code
bioRxiv. (2025)
code
arXiv:2412.19422 (2024)
code
bioRxiv 2023.11.11.566725. (2023)
code
Molecular Informatics (2023)
code
J. Chem. Inf. Model. (2023)
code
J. Chem. Inf. Model. 2023, 63, 7, 1882–1893
Iscience 24.4 (2021)
code
Frontiers in Pharmacology (2020)
code
Nat Commun 11, 10 (2020)
ChemRxiv. (2025)
J. Chem. Inf. Model. (2023)
code
chemrxiv-2023-q0zdf-v2 (2023)
Computers in Biology and Medicine (2023)
code
KDD '2022
code
J. Chem. Inf. Model. 2022, 62, 12, 2943–2950
code
ICML (2020)
code
J Cheminform 12, 53 (2020)
code
J Cheminform 10, 33 (2018)
code
Drug Discovery Today (2023)
J. Chem. Inf. Model. 2023, 63, 11, 3307–3318
code
IEEE Transactions on Quantum Engineering (2021)
code
arXiv:2508.04180 (2025)
code
arXiv:2502.09571 (2025)
code
Anal. Chem. (2023)
data
arXiv:2307.08240 (2023)
code
Commun Chem 6, 132 (2023)
code
Nat Methods 19, 865–870 (2022)
code
Science and technology of advanced materials 21.1 (2020)
code
bioRxiv, 2023-11 (2023)
Website
arXiv:2508.13197 (2025)
Digital Discovery (2025)
Digital Discovery (2025)
code
J. Mater. Chem. A (2025)
code
Nat Commun 16, 3598 (2025)
Angew. Chem. Int. Ed. (2025)
npj Comput Mater 11, 72 (2025)
code
Nat Commun 16, 1053 (2025)
code
Nature (2025)
code
arXiv:2410.03963 (2024)
code
Materials Today (2024)
code
Materials Today (2024)
code
Extreme Mechanics Letters (2024)
Nat Rev Mater (2024)
arXiv:2407.10022 (2024)
code
Nature 624, 80–85 (2023)
code
arXiv:2312.03687 (2023)
Digital Discovery (2025)
code
Digital Discovery (2024)
code
JACS Au (2025)
code
JACS Au (2025)
code
Nat Commun 16, 34 (2025)
code
arXiv:2502.16984 (2025)
J. Phys. Chem. C (2025)
ChemRxiv. (2025)
arXiv:2502.18127 (2025)
code
arXiv:2506.05616 (2025)
copy url
source logoarxiv.org
v1
View PDF
HTML (experimental)
[view email
[v1]
What is the Explorer?
What is Connected Papers?
What is Litmaps?
What are Smart Citations?
What is alphaXiv?
What is CatalyzeX?
What is DagsHub?
What is GotitPub?
What is Huggingface?
What is Papers with Code?
What is ScienceCast?
What are Influence Flowers?
What is CORE?
Learn more about arXivLabs
copy url
source logogithub.com
https://doi.org/10.1021/acs.jcim.3c00329
https://pejpohno.github.io/SMiPoly/
https://youtu.be/ilzYwNWvTeQ
SMiPoly repository
https://github.com/RadonPy/RadonPy
copy url
source logogithub.com
https://pubs.rsc.org/en/content/articlehtml/2024/dd/d4dd00196f
https://zenodo.org/records/12585902
https://zenodo.org/records/12585902
https://github.com/PEJpOhno/SMiPoly
https://zenodo.org/records/12587825
https://huggingface.co/ytl0410/PolyUniverse/tree/main
copy url
source logogithub.com
our benchmark
NeMo-RL
Hugging Face TRL
https://huggingface.co/futurehouse/ether0
https://huggingface.co/datasets/futurehouse/ether0-benchmark
chafa docs
ether0-benchmark
. To install
ether0.remotes docs
copy url
source logogithub.com
Boltz-1
Boltz-2
Slack channel
prediction instructions
prediction instructions
prediction instructions
training instructions
Slack channel
NVIDIA cuEquivariance
fork
copy url
source logohuggingface.co
technical report
prediction instructions
training instructions
Slack channel
NEW
🙋 1 Ask for provider support
copy url
source logogithub.com
MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction
2024.6.18] We propose [MolecularGPT
https://figshare.com/articles/dataset/Data_for_6095_constitutional_isomers_of_C7H10O2/1057646?backTo=/collections/Quantum_chemistry_structures_and_properties_of_134_kilo_molecules/978904
https://github.com/shenwanxiang/ChemBench/blob/master/src/chembench/data_and_index/CYP450/CYP450.csv.gz
https://huggingface.co/meta-llama/Llama-2-7b-chat-hf
https://huggingface.co/YuyanLiu/MolecularGPT
GIMLET: A Unified Graph-Text Model for Instruction-Based Molecule Zero-Shot Learning
copy url
source logogithub.com
PyPI package
PDF file
LAMMPS official site
LAMMPS official site
How to use
Link
Link
Link
Link
copy url
source logogithub.com
Citation
Awesome-Foundation-Models-on-Graphs
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[PDF
[PDF
[Code
[PDF
[Code
[PDF
[Code
[PDF
[PDF
[Code
[PDF
[Code
[PDF
copy url
source logodocs.nvidia.com
copy url
github.comgithub.com
copy url
github.comgithub.com

🏷【実践編】代表的モデルのインストールと基本操作ガイド

画像 1

【実践編】代表的モデルのインストールと基本操作ガイド

オープンソースの分子生成AIモデルは、理論を学ぶだけでなく、実際に手を動かしてこそ、その真価と可能性を深く理解できます。ここでは、代表的なモデルを実際にあなたの環境で動かすためのインストール手順と基本的な操作方法を、具体的なコマンドやコード例を交えて解説します。NVIDIAが提供するコンテナ化された使いやすいモデルから、自身で学習プロセスを実行する研究志向のモデルまで、様々なアプローチを紹介しますので、ご自身の目的や環境に合わせて挑戦してみてください。

NVIDIA BioNeMo NIMs:クラウドネイティブな分子AIの活用

NVIDIAは、創薬研究を加速させるためのAIプラットフォーム「BioNeMo Framework」の一環として、主要な分子AIモデルをNVIDIA Inference Microservices (NIM) という形で提供しています
tencent.com
。これは、Dockerコンテナとしてパッケージ化されており、複雑な環境構築の手間を大幅に削減し、APIを介して手軽にモデルの強力な推論機能を利用できる画期的なアプローチです。ここでは、タンパク質構造予測モデル「AlphaFold2」と分子ドッキングモデル「DiffDock」のNIMを例に、その導入から実践までを追ってみましょう。
AlphaFold2 NIMの実践ガイド
AlphaFold2は、アミノ酸配列からタンパク質の立体構造を高精度に予測するモデルです。NIMを利用することで、この最先端モデルをローカル環境で比較的容易に実行できます。
  1. 前提条件の準備 まず、いくつかの準備が必要です。NVIDIA製のGPU(A6000、A100、H100など、最低16GBのGPUメモリを持つもの)が搭載されたマシンを用意し、DockerとNVIDIA Container Toolkitをインストールしておく必要があります
    github.com
    ,
    nvidia.com
    。さらに、NVIDIA GPU Cloud (NGC)でアカウントを作成し、APIキーを取得後、
    docker login nvcr.io
    コマンドでDockerからNGCへログインを済ませておきましょう
    nvidia.com
    。
  2. コンテナの取得と実行 準備が整ったら、以下のコマンドでAlphaFold2 NIMのコンテナイメージを取得します。
    docker pull nvcr.io/nim/deepmind/alphafold2:2.1.0
    
    次に、取得したイメージを実行します。以下のコマンドは、コンテナを起動し、ローカルマシンのポート8000番を介してAPIサービスを公開します
    nvidia.com
    。
    export LOCAL_NIM_CACHE=~/.cache/nim
    export NGC_API_KEY=<あなたのNGC APIキー>
    
    docker run --rm --name alphafold2 --runtime=nvidia \
    -e NGC_API_KEY \
    -v $LOCAL_NIM_CACHE:/opt/nim/.cache \
    -p 8000:8000 \
    nvcr.io/nim/deepmind/alphafold2:2.1.0
    
    注目すべきは、
    -v
    オプションでローカルのキャッシュディレクトリをコンテナにマウントしている点です。これにより、初回起動時にダウンロードされる巨大なモデルパラメータ(数時間に及ぶこともあります)がローカルに保存され、2回目以降の起動が劇的に速くなります
    nvidia.com
    。
  3. サービスのヘルスチェックと推論実行 コンテナが起動したら、別のターミナルから以下の
    curl
    コマンドでサービスが正常に立ち上がったかを確認できます
    nvidia.com
    。
    curl -X 'GET' 'http://localhost:8000/v1/health/ready' -H 'accept: application/json'
    
    サービスが準備完了(ready)になったら、いよいよ推論の実行です。
    predict-structure-from-sequence
    というエンドポイントに、予測したいアミノ酸配列をJSON形式でPOSTすることで、構造予測が実行されます
    nvidia.com
    。
    curl -X 'POST' \
      "http://localhost:8000/protein-structure/alphafold2/predict-structure-from-sequence" \
      -H 'accept: application/json' \
      -H 'Content-Type: application/json' \
      -d '{"sequence": "MNVIDIAIAMAI", "databases": ["uniref90", "small_bfd"]}' \
      > output.json
    
    このリクエストが成功すると、予測されたタンパク質構造がPDBファイル形式で
    output.json
    に保存されます。このファイルを分子ビューアで開けば、予測結果を3Dで確認できます。
DiffDock NIMの実践ガイド
DiffDockは、タンパク質(レセプター)と低分子化合物(リガンド)がどのように結合するかを予測する分子ドッキングのためのモデルです
nvidia.com
。これもNIMとして提供されており、AlphaFold2とほぼ同様の手順で利用を開始できます。
  1. コンテナの取得と実行 前提条件はAlphaFold2と共通です
    nvidia.com
    。まず、DiffDock NIMのコンテナイメージを取得します。
    docker pull nvcr.io/nim/mit/diffdock:2.0.1
    
    そして、以下のコマンドでコンテナを起動します
    nvidia.com
    。
    docker run --rm -it --name diffdock-nim \
    --runtime=nvidia -e NVIDIA_VISIBLE_DEVICES=0 \
    -e NGC_API_KEY=$NGC_API_KEY \
    -p 8000:8000 \
    nvcr.io/nim/mit/diffdock:2.0.1
    
  2. 推論の実行 サービスが起動したら、タンパク質のPDBデータとリガンドのSDFデータを準備し、それらをJSONファイルにまとめてAPIにPOSTします。以下のコマンドは、Webから直接データを取得し、
    diffdock.json
    というリクエストファイルを作成する例です
    nvidia.com
    。
    protein_bytes=`curl https://files.rcsb.org/download/8G43.pdb | grep -E '^ATOM' | sed -z 's/\n/\\\n/g'`; \
    ligand_bytes=`curl https://files.rcsb.org/ligands/download/ZU6_ideal.sdf | sed -z 's/\n/\\\n/g'`; \
    echo "{ \"ligand\": \"${ligand_bytes}\", \"ligand_file_type\": \"sdf\", \"protein\": \"${protein_bytes}\", \"num_poses\": 1}" > diffdock.json
    
    作成したJSONファイルを使い、
    generate
    エンドポイントにリクエストを送信します
    nvidia.com
    ,
    nvidia.com
    。
    curl --header "Content-Type: application/json" \
    --request POST \
    --data @diffdock.json \
    --output output.json \
    http://localhost:8000/molecular-docking/diffdock/generate
    
    実行後、
    output.json
    には予測された結合ポーズ(リガンドの3D座標)が信頼度スコアと共に格納されます。提供されているPythonスクリプトを使えば、これらのポーズを個別のSDFファイルとして簡単に取り出すことも可能です
    nvidia.com
    。

MolecularGPT:Few-Shot学習で分子特性を予測する

MolecularGPTは、大規模言語モデル(LLM)をベースに、少量のデータ(Few-Shot)からでも分子の特性を予測できるように設計されたモデルです
github.com
。自身でモデルの学習から評価までを一通り体験したい場合に最適な選択肢と言えるでしょう。
  1. 環境構築とデータセット準備
    conda
    を用いてPython 3.10の環境を構築し、リポジトリ内のスクリプトで依存関係をインストールします
    github.com
    。
    conda create -n MolecularGPT python==3.10
    conda activate MolecularGPT
    git clone https://github.com/NYUSHCS/MolecularGPT.git
    cd MolecularGPT
    bash init_env.sh
    
    このモデルの利用で最も特徴的なのは、複数の公開データセット(ChEMBL20、QM9、ChemBenchなど)を自身でダウンロードし、指定されたディレクトリ構造に合わせて配置する必要がある点です
    github.com
    。このデータ準備プロセスは少々手間がかかりますが、モデルがどのような情報から学習するのかを理解する上で非常に有益な経験となります。
  2. 学習とテスト データ準備が完了したら、提供されているPythonスクリプトを順に実行することで、前処理、学習、そして評価のプロセスを進めることができます
    github.com
    。
    # 例:学習プロセスの開始
    python ICL_train.py
    
    また、より手軽に試したい場合は、開発者が公開している学習済みのLoRAウェイトと、ベースモデルであるLlama-2をダウンロードし、下流タスクの評価スクリプトを実行することも可能です
    github.com
    。

Boltz-1:AlphaFold 3のオープンソース版クローンを動かす

Boltz-1は、AlphaFold 3のオープンソースクローンとして注目を集めるモデルで、タンパク質-リガンド複合体などの構造予測に特化しています
github.com
。
インストールは非常に簡単で、
pip
コマンド一つで完了します
github.com
,
huggingface.co
。
# GPU (CUDA) 環境の場合
pip install boltz[cuda] -U
基本的な使い方もシンプルで、予測したい分子情報を記述したYAMLファイルを入力として
boltz predict
コマンドを実行するだけです
github.com
。
boltz predict input.yaml --use_msa_server
また、「ABCFold」という複数の構造予測モデルを統合的に実行できる便利なスクリプト集もあり、これを介してBoltz-1を利用することもできます
github.com
。
ここで紹介したモデルは、オープンソース分子生成AIの世界への入り口に過ぎません。ether0
github.com
やSMiPoly
github.com
のように、
pip
で手軽にインストールして試せるモデルも数多く存在します。ぜひこれらのガイドを参考に、ご自身のPCで分子生成AIの世界を体験し、その可能性を探求してみてください。
copy url
source logoqiita.com
たとえばMNISTデータセットを学習して、指定した数字を表す画像を出力するという例を、以前教えていただきました
https://github.com/rdkit/rdkit/raw/master/Docs/Book/data/solubility.train.sdf
copy url
source logomoleculeinsight.com
coding
link
Patrick Walters' post
Valence Labs
this paper
the documentation page
a recent paper
useful_rdkit_utils
useful_rdkit_utils
Auto3D
paper
provided link
copy url
source logonih.gov
3
4
5
8
9
12
13
14
16
17
19
20
21
11
13
22
24
25
11
13
15
22
26
28
29
30
31
32
14
16
24
33
34
35
36
16
37
38
15
39
40
41
44
Figure
1
Figure
2
43
45
Table
1
Table
1
Tables
2
3
Figure S1
Table
2
Table
3
Figure
3
Supporting Information
Figure S2
Figure
4
Table
4
48
49
48
Figures
5
6
Figure S3
Figure
5
Figure
6
Figure
6
Figure S4
Supporting Information
Table
2
Table S2
Supporting Information
50
https://github.com/PEJpOhno/SMiPoly
https://pubs.acs.org/doi/10.1021/acs.jcim.3c00329
Figure
6
PDF
ci3c00329_si_001.pdf
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
Google Scholar
DOI
[Google Scholar
DOI
[Google Scholar
https://goldbook.iupac.org
https://www.daylight.com/dayhtml/doc/theory/theory.smarts.html
DOI
[Google Scholar
DOI
[PubMed
[Google Scholar
DOI
[PMC free article
[PubMed
[Google Scholar
ci3c00329_si_001.pdf
https://github.com/PEJpOhno/SMiPoly
copy url
source logotwitter.com
copy url
source logogithub.com
Sign in
GitHub Copilot Write better code with AI
GitHub Spark New Build and deploy intelligent apps
GitHub Models New Manage and compare prompts
GitHub Advanced Security Find and fix vulnerabilities
Actions Automate any workflow
Codespaces Instant dev environments
Issues Plan and track work
Code Review Manage code changes
Discussions Collaborate outside of code
Code Search Find more, search less
Why GitHub
All features
Documentation
GitHub Skills
Blog
Enterprises
Small and medium teams
Startups
Nonprofits
DevSecOps
DevOps
CI/CD
View all use cases
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
AI
DevOps
Security
Software Development
View all
Learning Pathways
Events & Webinars
Ebooks & Whitepapers
Customer Stories
Partners
Executive Insights
GitHub Sponsors Fund open source developers
The ReadME Project GitHub community articles
Topics
Trending
Collections
Enterprise platform AI-powered developer platform
GitHub Advanced Security Enterprise-grade security features
Copilot for business Enterprise-grade AI features
Premium Support Enterprise-grade 24/7 support
Pricing
Search syntax tips
documentation
Sign in
Sign up
rigdenlab
ABCFold
hlasimpk/af3_mmseqs_scripts
Notifications
Fork 11
Star 85
85 stars
12 forks
Branches
Tags
Activity
Star
Notifications
Code
Issues 2
Pull requests 1
Actions
Projects 0
Security Uh oh! There was an error while loading. Please reload this page.
Insights
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Branches
Tags
330 Commits
.blob
.blob
.github/workflows
.github/workflows
abcfold
abcfold
examples
examples
tests
tests
.gitignore
.gitignore
.pre-commit-config.yaml
.pre-commit-config.yaml
MANIFEST.in
MANIFEST.in
README.md
README.md
pyproject.toml
pyproject.toml
requirements-dev.txt
requirements-dev.txt
setup.py
setup.py
setup_mmseqs_databases.sh
setup_mmseqs_databases.sh
here
here
PAE viewer
Activity
Custom properties
85 stars
3 watching
11 forks
Report repository
Releases
Packages 0
Terms
Privacy
Security
Status
Docs
Contact
copy url
source logosbgrid.org
X (Twitter)
Bluesky
Medium
SBGridTV
Supported Applications
Software Newsletter
Developer Tales
Deploy Your Software
Software Webinars
SBGrid In Your Lab
SBCloud
SBGrid Data Bank
PyMOLWiki
Additional Resources
Support Wiki
Labs in Boston
Report Software Bug
Request New Software
Other Support
Grant Support
What We Do
Members
Member Publications
Member Tales
SBGrid Team
History
Advisory Board
Licenses
ASI Policies and Guidance
Contact Us
Join us
Home
Supported Applications
All
Crystallography
NMR
Electron Microscopy
Computational Chemistry
Structure Visualization & Analysis
Other
Web Forum
Documentation
Visit Website
Supported Applications
Software Newsletter
Developer Tales
Deploy Your Software
Software Webinars
SBGrid In Your Lab
SBCloud
SBGrid Data Bank
PyMOLWiki
Additional Resources
SupportWiki
Labs in Boston
Report Software Bug
Request New Software
Other Support
Grant Support
What We Do
Members
Member Publications
Member Tales
SBGrid Team
History
Advisory Board
Licenses
ASI Policies and Guidance
Contact Us
Join us
Newsletter
News
Privacy
VPAT
Contact Us
copy url
source logopiwheels.org
these instructions if you need to create one
boltz-1.0.0-py3-none-any.whl
boltz-0.4.1-py3-none-any.whl
boltz-0.4.0-py3-none-any.whl
boltz-0.3.2-py3-none-any.whl
boltz-0.3.1-py3-none-any.whl
boltz-0.3.0-py3-none-any.whl
boltz-0.2.1-py3-none-any.whl
boltz-0.2.0-py3-none-any.whl
boltz-0.1.0-py3-none-any.whl
boltz-0.0.0-py3-none-any.whl
Search issues
Open a new issue
Open a new issue
copy url
source logogithub.com
97db233
jamesbraza
#15
jamesbraza
b517486
whitead
#14
whitead
#14
whitead
#13
jamesbraza
c8cc676
alexandonian
#12
alexandonian
#11
jamesbraza
#11
jamesbraza
#11
jamesbraza
218962b
jamesbraza
11544ab
jamesbraza
#10
jamesbraza
#9
jamesbraza
97042fd
jamesbraza
#7
jamesbraza
#7
jamesbraza
f6a0ca6
jamesbraza
#6
jamesbraza
#6
jamesbraza
#6
jamesbraza
5620bc8
jamesbraza
cc5dfc2
jamesbraza
copy url
source logogithub.com
Notifications
Fork 13
copy url
source logogithub.com
Sign in
GitHub Copilot Write better code with AI
GitHub Spark New Build and deploy intelligent apps
GitHub Models New Manage and compare prompts
GitHub Advanced Security Find and fix vulnerabilities
Actions Automate any workflow
Codespaces Instant dev environments
Issues Plan and track work
Code Review Manage code changes
Discussions Collaborate outside of code
Code Search Find more, search less
Why GitHub
All features
Documentation
GitHub Skills
Blog
Enterprises
Small and medium teams
Startups
Nonprofits
DevSecOps
DevOps
CI/CD
View all use cases
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
AI
DevOps
Security
Software Development
View all
Learning Pathways
Events & Webinars
Ebooks & Whitepapers
Customer Stories
Partners
Executive Insights
GitHub Sponsors Fund open source developers
The ReadME Project GitHub community articles
Topics
Trending
Collections
Enterprise platform AI-powered developer platform
GitHub Advanced Security Enterprise-grade security features
Copilot for business Enterprise-grade AI features
Premium Support Enterprise-grade 24/7 support
Pricing
Search syntax tips
documentation
Sign in
Sign up
Leash-Labs
boltz-belka-demo-neurips-2024
Notifications
Fork 0
Star 0
MIT license
0 stars
0 forks
Branches
Tags
Activity
Star
Notifications
Code
Issues 0
Pull requests 0
Actions
Projects 0
Security Uh oh! There was an error while loading. Please reload this page.
Insights
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Branches
Tags
8 Commits
belka-data
belka-data
msa
msa
.gitignore
.gitignore
LICENSE
LICENSE
README.md
README.md
experiment.ipynb
experiment.ipynb
inference_runner.py
inference_runner.py
poetry.lock
poetry.lock
pyproject.toml
pyproject.toml
poetry
installing poetry
skypilot
inference_runner.py
BELKA
kaggle
polaris
Boltz-1
experiment.ipynb
inference_runner.py
experiment.ipynb
Activity
Custom properties
0 stars
2 watching
0 forks
Report repository
Releases
Packages 0
Jupyter Notebook 98.4%
Python 1.6%
Terms
Privacy
Security
Status
Docs
Contact
copy url
source logogithub.com
copy url
source logogithub.com
copy url
source logogithub.com
our docs
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
AlphaFold2
run_alphafold.py script
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logogithub.com
NIM workflows
blueprint examples
copy url
source logonvidia.com
copy url
source logogithub.com
Notifications
Fork 33
https://docs.nvidia.com/nim/bionemo/alphafold2/latest/quickstart-guide.html
https://build.nvidia.com/nvidia/generative-virtual-screening-for-drug-discovery/blueprintcard
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logonvidia.com
copy url
source logogithub.com
here
examples/
here
MIT License
CC0 1.0
Analyzing Learned Molecular Representations for Property Prediction
Machine Learning of Reaction Properties via Learned Representations of the Condensed Graph of Reaction
Multi-Objective Molecule Generation using Interpretable Substructures
Chemprop: A Machine Learning Package for Chemical Property Prediction
When Do Quantum Mechanical Descriptors Help Graph Neural Networks to Predict Chemical Properties?
A Deep Learning Approach to Antibiotic Discovery
Halicin
Zenodo
Discovery of a structural class of antibiotics with explainable deep learning
ADMET-AI: A machine learning ADMET platform for evaluation of large-scale chemical libraries
Therapeutics Data Commons
admet.ai.greenstonebio.com
github.com/swansonk14/admet_ai
2023 paper
here
README
Benchmark scripts
ACS Fall 2023 Workshop
Google Colab notebook
nanoHUB tool
YouTube video
slides
v1-wontfix
lhlunoaghomffbnrcfkx.supabase.colhlunoaghomffbnrcfkx.supabase.co
...
GitHub - NVIDIA/bionemo-framework: BioNeMo Framework: For building and adapting AI models in drug discovery at scale
GitHub - NVIDIA/bionemo-framework: BioNeMo Framework: For building and adapting AI models in drug discovery at scale
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub
GitHub - NVIDIA/bionemo-framework: BioNeMo Framework: For building and adapting AI models in drug discovery at scale
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub
Edawson/scdl schema by edawson · Pull Request #1030 · NVIDIA/bionemo-framework · GitHub
File not found · GitHub
バイオ医薬品向けの BioNeMo | 生成 AI を使用した創薬 | NVIDIA
バイオ医薬品向けの BioNeMo | 生成 AI を使用した創薬 | NVIDIA
バイオ医薬品向けの BioNeMo | 生成 AI を使用した創薬 | NVIDIA
バイオ医薬品向けの BioNeMo | 生成 AI を使用した創薬 | NVIDIA

調査のまとめ

オープンソースの生成AIモデル「SMiPoly」とその使用方法

オープンソースで分子特性予測および化合物設計が可能な生成AIモデルとして、「SMiPoly(スマイポリ)」が挙げられます。こ...

調査のまとめ

オープンソースの生成AIモデルの利用方法

オープンソースの分子特性予測や化合物設計が可能な生成AIモデルとして、「SMiPoly」「ether0」「Boltz-1」が挙げられます。それぞれ...

調査のまとめ

オープンソースの分子特性予測および化合物設計が可能な生成AIモデルについて、MolecularGPTとBoltz-1の具体的な利用方法を詳しく調査しました。ether0とSMiPolyについては、現時...

調査のまとめ

NVIDIA BioNeMo FrameworkおよびAlphaFold2、DiffDock 2.0モデルの利用方法について調査しました。

NVIDIA BioNeMo Framework...

調査のまとめ

NVIDIA BioNeMo Framework内のオープンソースモデルを実際に使用する方法について、詳細な調査結果をまとめました。NVIDIAは、これらのモデルをNVIDIA Inference M...

🏷まとめ:研究開発を成功に導くAIモデル選定のポイント

画像 1

まとめ:研究開発を成功に導くAIモデル選定のポイント

オープンソースの分子生成AIを活用し、研究開発を加速させることは、現代の創薬や材料科学において非常に重要なテーマとなっています。ご質問いただいたように、どのようなモデルがあり、どうすれば実際に使えるのかを理解することは、成功への第一歩です。ここでは、具体的なアプローチと、研究開発を成功に導くためのAIモデル選定の要点について、最新の研究成果と実践的な知見を交えながら解説します。
分子生成AIは、コンピュータ上で仮想的に新しい分子を設計する技術の総称であり、これまでの試行錯誤に多大な時間と労力を要したプロセスを劇的に効率化する可能性を秘めています
mi-6.co.jp
。しかし、この強力なツールを最大限に活用するためには、その利点だけでなく、実用化における課題も深く理解しておく必要があります。実際に分子生成AIを導入すると、合成が困難な分子が多数生成されたり、目的の用途に合わないものが含まれていたり、あるいは生成される分子の構造に偏りが生じるといった課題に直面することが少なくありません
mi-6.co.jp
。
こうした課題を乗り越え、目覚ましい成果を上げるためのアプローチは一つではありません。ここでは、注目の二つの方向性をご紹介します。
一つ目は、特定のタスクに特化したモデルをファインチューニングしたり、ゼロから構築するのではなく、汎用的な大規模言語モデル(LLM)の能力を高度なプロンプト技術で引き出すアプローチです。近年の研究では、LLMが化学情報を扱う際に生じやすい「ハルシネーション(誤った情報の生成)」を劇的に削減する手法が開発されています
nih.gov
。この研究では、外部データベースから関連情報を取得してプロンプトに加えるRetrieval-Augmented Generation(RAG)と、LLM自身に最適な指示を生成させるMultiprompt Instruction PRoposal Optimizer(MIPRO)という技術を組み合わせています。
驚くべきことに、この手法を用いると、薬物動態に重要な指標であるトポロजिकल極性表面積(TPSA)の予測において、単純なプロンプトを用いた場合の平均絶対誤差(MAE)52.06に対し、わずか6.39まで精度を向上させることに成功しました
nih.gov
。これは、モデルを再訓練することなく、推論時にプロンプトを工夫するだけで、専門的な予測タスクで高い性能を発揮できることを示唆しています。実際にこのアプローチを試せるように、すべてのコードがGitHubリポジトリで公開されており、ご自身の研究開発にすぐに応用することが可能です1。
二つ目は、Conditional Variational AutoEncoder(CVAE)のような生成モデルを用いて、特定の物性値を持つ分子を生成するアプローチです
qiita.com
。この方法は、化合物のSMILES(分子構造の文字列表現)と物性値のデータセットを学習し、望ましい物性値を条件として与えることで、新しい分子構造を生成します。このプロセスには、Pythonの深層学習ライブラリであるTensorFlowやPyTorch、そして化学情報学ライブラリのRDKitなどが一般的に用いられます
qiita.com
。
それでは、これらのアプローチを踏まえた上で、研究開発を成功に導くためのAIモデル選定のポイントはどこにあるのでしょうか。最も重要なのは、万能なモデルは存在しないという認識のもと、戦略的に実践知を積み重ねていくことです
mi-6.co.jp
。
第一に、本質的な要件を定義することが不可欠です。探索したい分子の特性や機能、構造上の制約などを明確に言語化し、定量的な条件として設定します。例えば、特定の官能基を含む、溶解度を示すlogP値が一定範囲内にある、といった具体的な制約を設けることで、探索空間を有効に絞り込み、目的に合致した分子を効率的に見つけ出せます
mi-6.co.jp
。
第二に、モデルやツールを賢く組み合わせる工夫が求められます。生成された分子が本当に合成可能かを見極めるために、SAScoreのような合成可能性評価スコアを導入したり、逆合成解析ツールを組み合わせたりすることが有効です
mi-6.co.jp
。また、LLMのハルシネーションを抑えるためにRAGを活用したり、機械学習モデルの予測信頼性が低い領域を避けて探索したりするなど、複数の技術を組み合わせることで、単一の手法では到達できない高精度な分子設計が実現します
nih.gov
、
mi-6.co.jp
。
最後に、反復的な改善と現場からのフィードバックを大切にすることです。AIによる分子生成は、一度で完璧な結果が出ることは稀です。AIが提案した分子候補について、実験結果やシミュレーションによる評価を行い、その知見を次のAIモデルの学習や制約条件の更新に活かすというサイクルを回すことが、最終的な成功の鍵を握ります
mi-6.co.jp
。
結論として、オープンソースの分子生成AIは、研究開発を飛躍的に進化させる強力なエンジンとなり得ます。そのポテンシャルを最大限に引き出すためには、単にモデルを導入するだけでなく、達成したい目標を明確にし、利用可能なツールを創造的に組み合わせ、そして試行錯誤を繰り返しながらプロセスを洗練させていくという、戦略的かつ実践的な視点が何よりも重要になるのです。
copy url
source logomi-6.co.jp
copy url
source logonih.gov
Dashboard
Publications
Account settings
Dashboard
Publications
Account settings
Journal List
User Guide
PMC Disclaimer
PMC Copyright Notice
10.1021/acs.jcim.4c02322
Search in PMC
Search in PubMed
View in NLM Catalog
Scott M Reed
Scott M Reed
https://creativecommons.org/licenses/by-nc-nd/4.0/
PMC Copyright notice
40262168
https://pubchem.ncbi.nlm.nih.gov/docs/glossary
Figure S1
Figure S2
Figure S3
Figure S4
Figure S5
Figure S6
Figure S7
Figure S8
Figure S9
Figure S5
https://github.com/scottmreed/chemistry-augmented-generation
https://pubs.acs.org/doi/10.1021/acs.jcim.4c02322
PDF
special issue
ci4c02322_si_001.pdf
DOI
PMC free article
PubMed
DOI
PMC free article
PubMed
Google Scholar
DOI
Google Scholar
http://arxiv.org/abs/2406.12950
DOI
Google Scholar
DOI
PMC free article
PubMed
DOI
Google Scholar
DOI
PMC free article
PubMed
Google Scholar
http://arxiv.org/abs/2409.20042
http://arxiv.org/abs/2408.08435
DOI
PMC free article
PubMed
Google Scholar
Google Scholar
http://arxiv.org/abs/2408.06292
http://arxiv.org/abs/2407.10930
http://arxiv.org/abs/2005.11401
http://arxiv.org/abs/2406.11695
DOI
PMC free article
PubMed
Google Scholar
DOI
PubMed
Google Scholar
DOI
PMC free article
PubMed
Google Scholar
ci4c02322_si_001.pdf
https://github.com/scottmreed/chemistry-augmented-generation
View on publisher site
NCBI on X (formerly known as Twitter)
NCBI on Facebook
NCBI on LinkedIn
NCBI on GitHub
NCBI RSS feed
NLM on X (formerly known as Twitter)
NLM on Facebook
NLM on YouTube
National Library of Medicine 8600 Rockville Pike Bethesda, MD 20894
Web Policies
FOIA
HHS Vulnerability Disclosure
Help
Accessibility
Careers
NLM
NIH
HHS
USA.gov

🖍 考察

調査の本質:研究開発プロセスを革新するAI活用の羅針盤

あなたが求められているのは、単にオープンソースの分子生成AIツールのリストアップとその使い方に留まりません。その本質は、創薬や材料開発といった知的集約的な研究開発のプロセスそのものを、AIの力を借りてどのように変革し、加速させることができるか、その具体的な道筋と戦略を描き出すことにあります。これまで専門家の経験と膨大な試行錯誤に依存してきた分子設計の世界で、AIを単なるツールとしてではなく、創造的なパートナーとして迎え入れるための羅針盤を提供することが、この調査の真の価値と言えるでしょう。これから、そのための具体的な分析と戦略を紐解いていきます。

分析と発見事項:分子設計AIの現在地と進化の方向性

調査結果を多角的に分析すると、オープンソースの分子生成AI分野におけるいくつかの重要なトレンドとパターンが浮かび上がってきます。これらは、今後のAI活用戦略を立てる上で欠かせない視点となります。
  1. ツールの専門分化とエコシステムの成熟 かつては画一的であったAIモデルは、今や驚くほど多様化し、専門分化が進んでいます。タンパク質の3D構造を高精度に予測するBoltzやAlphaFold2
    huggingface.co
    prtimes.jp
    、分子間の結合様式を解き明かすDiffDock
    prtimes.jp
    、そして複数の目的を同時に満たす分子をゼロから設計するREINVENT4
    github.com
    など、研究開発の各フェーズに特化した強力なツール群が一個のエコシステムを形成しています。これは、もはや「どのAIを使うか」という単一の問いではなく、「どのAIを、どの順番で、どう組み合わせるか」という戦略的な思考が求められる時代になったことを示しています。
  2. 利用ハードルの劇的な低下と研究の民主化 特筆すべきは、NVIDIAが提供するBioNeMo NIMsのようなコンテナ技術の活用です
    prtimes.jp
    。複雑な環境構築や依存関係の解決といった、これまで多くの研究者を悩ませてきた技術的な障壁が取り払われ、APIを呼び出すだけで最先端のAIモデルの推論機能を活用できるようになりました。この「研究の民主化」の流れは、AIの専門家でなくとも、化学や薬学のドメイン知識を持つ研究者が主体的にAIを使いこなし、自身の研究を加速させることを可能にしています。
  3. 大規模言語モデル(LLM)の化学領域への進出 自然言語処理の世界を席巻した大規模言語モデル(LLM)の波が、化学の領域にも到達しています。MolecularGPTが示すように、少量のデータからでも分子の特性を予測する能力(Few-Shot学習)は、データが限られる希少疾患の治療薬開発などに新たな光を当てるものです
    arxiv.org
    。また、ether0のように「自然言語で分子を設計する」という直感的なアプローチは、人間とAIの協業スタイルをより円滑で創造的なものへと変えていく可能性を秘めています
    ledge.ai
    。
  4. 「創造」と「実現」のギャップという現実的課題 一方で、AIが提案する分子が必ずしも合成可能とは限らないという、実用化に向けた根深い課題も浮き彫りになっています
    mi-6.co.jp
    。AIの持つ無限の創造性と、現実世界の物理的・化学的制約との間には依然としてギャップが存在します。この事実は、AIの提案を盲信するのではなく、合成可能性スコアの評価や逆合成解析ツールとの連携といった、現実的な視点に立ったワークフローの設計が不可欠であることを強く示唆しています。

より深い分析と解釈:なぜ今、この変革が起きているのか

これらの発見事項の背後にある根本的な要因を掘り下げてみましょう。「なぜ?」を繰り返すことで、表面的なトレンドの奥にある本質的な構造変化が見えてきます。
  • なぜ、これほどまでにツールは専門分化しているのか? その理由は、分子設計というタスクが持つ固有の複雑さにあります。創薬プロセスを例にとると、「ターゲットタンパク質の構造を特定する」「ヒット化合物を見つけ出す」「リード化合物を最適化する」といった各段階では、解決すべき課題の性質が全く異なります。構造予測には3次元空間の物理法則を、ヒット探索には広大な化学空間の効率的な探索能力を、そして最適化には精密な物性予測能力が求められます。このため、それぞれの課題に最適化された異なるAIアーキテクチャが必然的に生まれてきたのです。
  • なぜ、AIは「言語」として化学を学び始めたのか? 分子構造をSMILESという文字列で表現するアイデアは古くからありましたが、LLMの登場がその可能性を飛躍的に高めました
    mi-6.co.jp
    。LLMは、単語の並びから文法や文脈、さらにはその背後にある意味論的な関係性までを学習する能力を持っています。この能力をSMILESに応用することで、AIは原子の繋がり(文法)だけでなく、特定の構造がどのような機能や特性を持つか(意味)までを学び取ることができるようになりました。特に、データが少ない状況でも性能を発揮するMolecularGPTの存在は、「データ量の壁」という創薬研究における長年の課題に対する、全く新しいアプローチを提示しています
    arxiv.org
    。
  • AIの「創造性」と化学者の「経験知」はどのように融合すべきか? この二つは対立するものではなく、弁証法的に統合されるべきものです。AIが広大な未知の化学空間から、人間の常識を超えた斬新な分子構造を提案します(テーゼ)。それに対し、化学者は長年の経験と知識に基づき、その分子の合成可能性、安全性、新規性などを評価し、現実的な制約をフィードバックします(アンチテーゼ)。このAIと人間の創造的な対話のサイクルを繰り返すことで、単独では到達し得なかった、革新的かつ実現可能性の高い分子設計(ジンテーゼ)が生まれるのです。オープンソースのAIツールは、この対話を促進するための共通言語であり、思考を現実化するためのプラットフォームとしての役割を果たします。

戦略的示唆:明日から始める分子設計AI活用プラン

これらの分析と解釈に基づき、あなたの研究開発を成功に導くための実践的なアクションプランを提案します。
  1. 第一歩:導入しやすいツールで成功体験を積む(短期) まずは、NVIDIA BioNeMo NIMsで提供されているAlphaFold2やDiffDockを試すことから始めましょう
    nvidia.com
    nvidia.com
    。Dockerコンテナを利用するため環境構築が容易であり、現在研究対象としているタンパク質や化合物を入力するだけで、すぐに具体的な予測結果を得られます。この小さな成功体験が、より高度なAI活用への自信とモチベーションにつながります。
  2. 目的別ツールの習熟とワークフローの構築(中期) 次に、自身の研究目的に合わせて、より専門的なツールを深く使いこなす段階へ進みます。以下の表は、目的別の推奨ツールと活用シナリオの一例です。
研究開発の目的推奨ツール活用シナリオ例
全く新しい分子骨格を創出したいREINVENT4複数の物性(例:活性、溶解度、合成容易性)を目的関数として設定し、強化学習を用いて最適な分子をゼロから探索する。
データが少ないターゲットを扱っているMolecularGPT限られた実験データを用いてFew-Shot学習を行い、有望な候補化合物の特性を効率的に予測する。
新機能ポリマー材料を開発したいRadonPy, SMiPoly仮想的に生成したポリマーライブラリの物性(熱伝導率など)をRadonPyで全自動計算し、有望な材料候補をスクリーニングする。
重要なのは、これらのツールを単体で使うのではなく、**現実的制約を考慮したワークフロー**に組み込むことです。例えば、REINVENT4が生成した分子に対しては、必ず合成可能性スコア(SAScoreなど)でフィルタリングし、逆合成解析ツールで合成経路の妥当性を検証するプロセスを確立しましょう。
3. LLMの高度活用と創造的パートナーシップの深化(長期) 将来的には、LLMを研究開発のより根幹的なパートナーとして位置づけます。ether0のように自然言語でAIと対話しながら分子を設計したり、MolecularGPTのようにLLMに新たな化学タスクを学習させたりすることを目指します。また、調査結果で示唆されているように、RAG(Retrieval-Augmented Generation)技術
nih.gov
を導入し、最新の論文や社内データベースの情報を参照させながら、より信頼性の高い回答や提案をAIから引き出す仕組みを構築することも重要な戦略となるでしょう。

今後の調査:フロンティアを切り拓くためのネクストステップ

今回の分析を踏まえ、さらに一歩先のイノベーションを創出するために、以下のテーマに関する継続的な調査を提案します。
  • 複数AIモデル連携による統合的ワークフローの構築 REINVENT4で分子を生成し、Boltz-2で結合親和性を高速評価し、さらに化学反応予測AIで合成経路を提案する、といった複数のAIモデルを連携させた自動設計パイプラインの実現可能性を探ります。
  • 実験自動化(Self-driving Lab)との融合 AIが設計し、有望と判断した分子を、ロボットが自動で合成・評価する「自律駆動型研究室」の実現に向けた技術動向を調査します。オープンソースAIをその「頭脳」として組み込むためのインターフェースやプロトコルを検討することが重要です。
  • AIの判断根拠を解明する技術(Explainable AI, XAI)の探求 AIがなぜ特定の分子を「有望」と判断したのか、その根拠を可視化・解釈する技術を調査します。これにより、AIの提案から人間が新たな化学的知見や設計原理を学び取り、研究開発プロセス全体を質的に向上させることが可能になります。

このレポートが参考になりましたか?

あなたの仕事の調査業務をワンボタンでレポートにできます。

無料でリサーチ

📖 レポートに利用された参考文献

検索結果: 52件追加のソース: 4件チャット: 5件

431件の参考文献から61件の情報を精査し、約305,000語の情報を整理しました。あなたは約26時間の調査時間を削減したことになります🎉

調査された文献
431件
精査された情報
61件
整理された情報量
約305,000語
削減された時間
約26時間

🏷 はじめに:オープンソースAIが拓く分子設計の新時代

Beginner's Guide to Generative Design for Small Molecules
This guide introduces the principles of generative design and how it's helping researchers create fit-for-purpose small molecules.
neovarsity.orgneovarsity.org
バイオ医薬品向けの BioNeMo | 生成 AI を使用し
バイオ医薬品向けの BioNeMo | 生成 AI を使用した創薬 | NVIDIA NVIDIA Home NVIDIA Home Menu Menu icon Menu Menu icon Clo...
nvidia.comnvidia.com

🏷 目的別に選ぶ!主要オープンソース分子生成AIモデルカタログ

バイオ分子構造予測を促進するオープンソースAIモデルBoltz-1を発表
Boltz-1は、生物分子の構造予測において、Google DeepMindのAlphaFold3と同等の高度なレベルに到達した、初の完全オープンソースモデルです。このモデルは、MIT Jameel ...
aibase.comaibase.com
FutureHouse、化学推論特化のAIモデル「ether0」を公開 科学 ...
自然言語で分子設計を可能にする推論能力を備えており、オープンソース形式で公開された。 ... 自然言語による入力からSMILES表現などの分子記述を生成 ...
ledge.ailedge.ai
NVIDIAがBioNeMo をオープンに、世界のバイオ医薬品および科学 ...
オープンソースの BioNeMo Frameworkは、生体分子研究用の AI モデルを ... 作成、カスタマイズ、展開を加速するように設計されています。高速 ...
prtimes.jpprtimes.jp
Google DeepMind、「AlphaFold 3」をオープンソース化し生命分子研究を ...
このコンテキストは、Google DeepMindが「AlphaFold 3」をオープンソース化し、生命分子研究を加速することについて言及していますが、提供されている情報は非常に限定的です。 #### 記事の基本情報 2024年11月18日(月)に「Google DeepMind、「AlphaFold 3」をオープンソース化し生命分子研究を加速」というタイトルの記事が公開されたことが示されています。記事のサムネイル画像も含まれています。 ![Google DeepMind、「AlphaFold 3」をオープンソース化し生命分子研究を加速のサムネイル画像](https://storage.googleapis.com/ledge-ai-prd-public-bucket/media/d41586_024_03708_4_27714520_fc0f291748/d41586_024_03708_4_27714520_fc0f291748.jpg) #### Ledge.aiサイトの機能について このコンテキストには、記事本文の内容よりも、情報源であるLedge.aiというウェブサイトの機能に関する説明が多く含まれています。 * **クリップ機能の紹介**: 読者がサインインして「いいね」を押すことで、記事がマイページの「いいね履歴」に保存され、後で読み返したりじっくり読んだりする際に便利であると繰り返し説明されています。 * **Ledge.ai編集部の紹介**: Ledge.ai編集部が最新のAI関連技術、テクノロジー、AIのビジネス活用事例に関する情報を毎日発信していることが述べられています。編集部に関する画像も掲載されています。 ![Ledge.ai編集部の画像](https://storage.googleapis.com/ledge-ai-prd-public-bucket/media/C7_P6_S_Gks_400x400_c0281f2ebf/C7_P6_S_Gks_400x400_c0281f2ebf.jpeg) * **関連情報セクション**: 「関連するタグ」や「関連記事」(ただし、コンテキストには「関連する記事が見つかりませんでした」と表示)、および「アクセスランキング」といったサイトナビゲーションの項目も含まれています。また、メールマガジンに関する画像も確認できます。 ![mailmagazine_250819](https://storage.googleapis.com/ledge-ai-prd-public-bucket/media/250_300_2_281c243244/250_300_2_281c243244.png) #### 要約のまとめ ご提供いただいたコンテキストからは、Google DeepMindの「AlphaFold 3」がオープンソース化されたという事実のタイトルと公開日、およびサイトの付随情報のみが確認できました。ユーザーの皆様が求められている、具体的なモデルの詳細や分子特性予測・化合物設計におけるその能力、あるいは実際に使用する方法に関する情報は、このコンテキストからは読み取ることができませんでした。 これは、スクレイピングやAIによるアクセスで取得できた情報が、記事の導入部分やウェブサイトの一般的なナビゲーション要素に限定されている可能性を示唆しています。もし詳細な情報にご興味がおありでしたら、ブラウザで直接該当のウェブページを閲覧していただくことをお勧めします。
ledge.ailedge.ai
ダイセルらが高分子合成MIのオープンソース公開、22種類の反応 ...
SMiPolyの計算モデルには、高分子合成で広く用いられている22種類の重合反応を実装している。このモデルに出発物質として市販の原料モノマーを入力すると ...
nikkeibp.co.jpnikkeibp.co.jp
AI分子生成の導入と基本手法の紹介 | miLab - MI-6
分子生成技術の概要や代表的な手法(BRICS、ChemTS、VAEなど)を解説し、有機分子設計におけるAI活用の利点や効果的な分子設計方法を紹介します。
mi-6.co.jpmi-6.co.jp
MolecularAI/REINVENT4: AI molecular design tool for de ... - GitHub
REINVENT is a molecular design tool for de novo design, scaffold hopping, R-group replacement, linker design, molecule optimization, and other small molecule ...
github.comgithub.com
List of Molecular and Material design using Generative AI and Deep ...
Large language models open new way of AI-assisted molecule design for chemists [2025] ... SynthI: A New Open-Source Tool for Synthon-Based Library Design [2022]
github.comgithub.com
MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
MolecularGPT exhibits competitive in-context reasoning capabilities across 10 downstream evaluation datasets, setting new benchmarks for few- ...
arxiv.orgarxiv.org
PEJpOhno/SMiPoly: rule-based virtual polymer library ... - GitHub
SMiPoly (Small Molecules into Polymers) is rule-based virtual library generator for discovery of functional polymers.
github.comgithub.com
Future-House/ether0: A scientific reasoning model, dataset ... - GitHub
This repo contains the reward model for evaluating ether0 and similar models, along with utilities for working with the verifiable rewards in our benchmark.
github.comgithub.com
Official repository for the Boltz biomolecular interaction models
Boltz is a family of models for biomolecular interaction prediction. Boltz-1 was the first fully open source model to approach AlphaFold3 accuracy.
github.comgithub.com
boltz-community/boltz-1 - Hugging Face
Boltz-1 is an open-source model which predicts the 3D structure of proteins, rna, dna and small molecules; it handles modified residues, covalent ligands and ...
huggingface.cohuggingface.co
NYUSHCS/MolecularGPT - GitHub
Official code for "MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction".
github.comgithub.com
ytl0410/PolyUniverse: Generation of a Large-scale Polymer ... - GitHub
Generation of a large-scale polymer library using rule-based polymerization reactions for polymer informatics.
github.comgithub.com
RadonPy is a Python library to automate physical property ... - GitHub
RadonPy is the first open-source Python library for fully automated calculation for a comprehensive set of polymer properties, using all-atom classical MD ...
github.comgithub.com
Zehong-Wang/Awesome-Foundation-Models-on-Graphs - GitHub
[Arxiv 24.06] MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction [PDF] [Code]; [Arxiv 24.06] LLM and GNN are ...
github.comgithub.com
Overview — NVIDIA NIM for DiffDock
#### Overview — NVIDIA NIM for DiffDockの概要 「Overview — NVIDIA NIM for DiffDock」は、創薬プロセスにおいて重要な役割を果たす最先端の生成モデルであるDiffDockについて、その機能と動作原理を詳しく解説しています。このドキュメントは、NVIDIA NIM(NVIDIA Inference Microservices)の一部として提供されるDiffDockの概要を理解するために役立ちます。 #### DiffDockとは DiffDockは、タンパク質とリガンド複合体の三次元構造を予測するために使用される、革新的な生成モデルです。この予測は、分子ドッキングまたはポーズ予測として知られ、創薬プロセスの極めて重要なステップです。DiffDockは、小分子リガンドがタンパク質にどのように結合するか、その結合構造を推定します。 #### DiffDockの主要機能と利点 DiffDockが提供する主な機能と利点は以下の通りです。 * **AI創薬パイプラインの支援**: AIベースの創薬プロセスを効率化し、下流タスクとの統合により新たな研究の道を拓きます。 * **高精度かつ計算効率**: モデルは非常に高い精度を誇り、同時に計算効率も優れているため、リソースを節約しながら迅速な結果を提供します。 * **高速な推論と信頼度推定**: 推論時間が非常に速く、高い選択的精度で結合ポーズの信頼度を推定する機能も備えています。 #### DiffDockの動作原理 DiffDockは、ブラインド分子ドッキングポーズ推定のための同変幾何モデルとして機能します。このモデルは、入力としてタンパク質と分子の3D構造のみを必要とし、結合ポケットに関する事前の情報は一切必要としません。 モデルの内部では、拡散プロセス中に分子のタンパク質に対する相対的な位置、向き、およびねじれ角が変化します。学習された逆拡散プロセスを実行することで、ノイズのある事前の分子ポーズの分布を、モデルが学習した正確なポーズに変換します。最終的に、DiffDockは多数のサンプルポーズを出力し、内蔵の信頼度モデルを通じてこれらのポーズをランク付けします。 #### 補足情報 DiffDockモデルに関するより詳細な説明は、公式サイトのModel Cardで確認できます。このドキュメントは、NVIDIA Corporationによって2024年から2025年にかけて作成され、2025年7月16日に最終更新されました。
nvidia.comnvidia.com
GitHub - NVIDIA/bionemo-framew
GitHub - NVIDIA/bionemo-framework: BioNeMo Framework: For building and adapting AI models in drug di...
github.comgithub.com
Edawson/scdl schema (#1030) ·
Edawson/scdl schema (#1030) · NVIDIA/bionemo-framework@2956b15 · GitHub Skip to content Navigation M...
github.comgithub.com

🏷 【実践編】代表的モデルのインストールと基本操作ガイド

ChatGPTとPythonで学ぶ 低分子化合物SMILES生成AI:CVAE編 - Qiita
PythonでCVAEを利用して分子生成AIを作る流れは以下のようになります。 化合物データベースから訓練データを収集します。一般的にはSMILES(Simplified ...
qiita.comqiita.com
chemprop/chemprop: Message Passing Neural Networks ... - GitHub
Chemprop is a repository containing message passing neural networks for molecular property prediction. Documentation can be found here.
github.comgithub.com
Generative Chemistry for Everyone: A Hands-On Guide using SAFE ...
In this article, I aim to introduce the generative chemistry pipeline with a specific example of linking two fragments to generate a novel scaffold.
moleculeinsight.commoleculeinsight.com
SMiPoly: Generation of a Synthesizable Polymer Virtual Library ...
The source code of SMiPoly is available from the GitHub website(https://github.com/PEJpOhno/SMiPoly). A sample script to generate the polymer library is in the ...
nih.govnih.gov
#SMiPoly - Search / X
The documentation for #SMiPoly, our rule-based virtual #polymer library generator, has just been released! Get all the info you need to make the most of it.
twitter.comtwitter.com
Boltz-1 - SBGrid Consortium - Supported Software
Installation. Use the following command to install this title with the CLI client: $ sbgrid-cli install boltz-1 Available operating systems: Linux 64. Primary ...
sbgrid.orgsbgrid.org
boltz - piwheels
Releases ; 1.0.0, 2025-04-26 ; 0.4.1, 2025-01-12 ; boltz-0.4.1-py3-none-any.whl (135 KB) How to install this version.
piwheels.orgpiwheels.org
Workflow runs · Future-House/ether0 - GitHub
A scientific reasoning model, dataset, and reward functions for chemistry. - Workflow runs · Future-House/ether0.
github.comgithub.com
Future-House ether0 · Discussions - GitHub
Explore the GitHub Discussions forum for Future-House ether0. Discuss code, ask questions & collaborate with the developer community.
github.comgithub.com
Issues · jwohlwend/boltz - GitHub
Official repository for the Boltz biomolecular interaction models - jwohlwend/boltz.
github.comgithub.com
A tutorial using Boltz-1 to predict binding on BELKA. - GitHub
Boltz-1 is an open-source clone of AlphaFold 3 developed at MIT CSAIL. Boltz predicts the structure of biological complexes, including protein-ligand complexes.
github.comgithub.com
rigdenlab/ABCFold: Scripts to run AlphaFold3, Boltz-1 and ... - GitHub
Scripts to run AlphaFold3, Boltz and Chai-1 with MMseqs2. Multiple sequence alignments (MSAs) and custom templates.
github.comgithub.com
modal-examples/06_gpu_and_ml/protein-folding/boltz1.py at main
# Boltz-1 is an open source molecular structure prediction model that matches the performance of closed source models like AlphaFold 3. # It was created by the ...
github.comgithub.com
Releases · NYUSHCS/MolecularGPT - GitHub
You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in our docs ...
github.comgithub.com
Deployment Guide — NVIDIA NIM for AlphaFold2-Multimer
You can skip this download step on future runs by caching the model weights locally using a cache directory as in the example below.
nvidia.comnvidia.com
alphafold2-multimer Model by DeepMind - NVIDIA NIM APIs
Python Client Example. Save following Python example to a file named nim_client.py . Copy Code. import requests import json url = "http://localhost:8000 ...
nvidia.comnvidia.com
Prerequisites — NVIDIA NIM for AlphaFold2-Multimer
The AlphaFold2-Multimer NIM is configured to run on a single GPU. The minimum GPU memory requirement for the AlphaFold2-Multimer NIM is 32GB.
nvidia.comnvidia.com
Configuring the NIM at Runtime — NVIDIA NIM for AlphaFold2
The AlphaFold2 NIM allows a number of customizations at runtime that allow Below, we detail the various AlphaFold2 NIM-specific runtime configuration options.
nvidia.comnvidia.com
AlphaFold2 NIM Endpoints - NVIDIA Docs Hub
Below, we outline the three endpoints of the API. We give real examples of requests that should run when the NIM is correctly configured.
nvidia.comnvidia.com
Support for providing inputs to AlphaFold2 as files and *not* using ...
You can find an example information for running the locally hosted nim here: github.com/NVIDIA/bionemo-examples · examples/nims/alphafold2 ...
nvidia.comnvidia.com
API Reference — NVIDIA NIM for DiffDock
API Reference#. DiffDock NIM provides following API endpoints: GET : /v1/health/ready - Health status. GET : /v1/models - List all available ...
nvidia.comnvidia.com
Getting Started — NVIDIA NIM for DiffDock
You will use the Quickstart Guide to pull the NIM container and model, perform a health check, and then run inference.
nvidia.comnvidia.com
Advanced Usage — NVIDIA NIM for DiffDock 1.2.0 documentation
DiffDock NIM allows for a Batch-Docking mode, which docks a group of ligand molecules against the same protein receptor through a single inference request.
nvidia.comnvidia.com
NVIDIA/bionemo-examples - GitHub
Explore our preview APIs, then download the NIMs to deploy on premises or in the cloud as the fastest way to achieve enterprise-grade accelerated AI inference ...
github.comgithub.com
Configure NIM — NVIDIA NIM for DiffDock - NVIDIA Docs
Configure NIM#. This section provides additional details for launching the DiffDock NIM container. View NIM Container Information#.
nvidia.comnvidia.com
AF2 dataset download, docker login, and minimum hardware ...
To solve the issue above I launched the AlphaFold2 NIM standalone, like here: https://docs.nvidia.com/nim/bionemo/alphafold2/latest/quickstart-guide.html .
github.comgithub.com
Quickstart Guide — NVIDIA NIM for AlphaFold2
In the new terminal, wait until the health check end point returns {"status":"ready"} before proceeding. This may take a couple of minutes. You ...
nvidia.comnvidia.com
Deployment Guide — NVIDIA NIM for AlphaFold2
To deploy, pull the container image, then run it using `docker run` with the `--runtime=nvidia` flag, and the `-p 8000:8000` flag to map ports.
nvidia.comnvidia.com
NVIDIA NIM for DiffDock
Prerequisites · NGC (NVIDIA GPU Cloud) Account · NGC CLI Tool · Model Specific Requirements · Hardware · Software · Launch DiffDock NIM · Run Inference · Dump ...
nvidia.comnvidia.com
NVIDIA NIM for DiffDock — NVIDIA NIM for DiffDock
DiffDock. Overview · Getting Started · Prerequisites · NGC (NVIDIA GPU Cloud) Account · NGC CLI Tool · Model Specific Requirements · Hardware · Software.
nvidia.comnvidia.com
NVIDIA NIM for DiffDock 1.2.0 documentation - NVIDIA Docs Hub
NVIDIA NIM for DiffDock · Overview · Getting Started · Prerequisites · NGC (NVIDIA GPU Cloud) Account · NGC CLI Tool · Configure NIM · View NIM Container ...
nvidia.comnvidia.com
NVIDIA BioNeMo Frameworkの公式GitHubリポジトリ(https://github.com/NVIDIA/bionemo-framework)にアクセスします。,リポジトリのREADME.md、docsフォルダ、examplesフォルダを重点的に確認し、インストールガイド、クイックスタート、AlphaFold2やDiffDock 2.0などの各モデルのチュートリアルやデモがないか探します。,tutorialsやexamplesディレクトリ内にJupyter NotebookやPythonスクリプトが見つかった場合、それらの内容を詳細に確認し、具体的なコード例、データ入出力形式、実行コマンドを抽出します。,GitHubリポジトリで情報が不足している場合、NVIDIAの公式BioNeMoページ(https://www.nvidia.com/ja-jp/clara/biopharma/)やBuild for Biologyページ(https://build.nvidia.com/explore/biology)にアクセスし、「Documentation」や「Get Started」セクション、「Developer Resources」といったリンクを辿り、BioNeMo Frameworkを用いた具体的なモデルのデプロイメントや推論に関する情報(特にCLIコマンドやPython APIの利用例)を探します。,各モデルのNIMマイクロサービスとして提供されている情報があれば、そのAPIドキュメントやSDKの使用例を確認し、ローカル環境での利用可能性と手順を把握します。
<step>1</step> <url>about:blank</url> <title>Starting agent 1704...</title> <thoughts><thinking>ユーザ...
lhlunoaghomffbnrcfkx.supabase.colhlunoaghomffbnrcfkx.supabase.co
調査のまとめ
#### オープンソースの生成AIモデル「SMiPoly」とその使用方法 オープンソースで分子特性予測および化合物設計が可能な生成AIモデルとして、「SMiPoly(スマイポリ)」が挙げられます。こ...
調査のまとめ
オープンソースの分子特性予測および化合物設計が可能な生成AIモデルについて、MolecularGPTとBoltz-1の具体的な利用方法を詳しく調査しました。ether0とSMiPolyについては、現時...
調査のまとめ
#### オープンソースの生成AIモデルの利用方法 オープンソースの分子特性予測や化合物設計が可能な生成AIモデルとして、「SMiPoly」「ether0」「Boltz-1」が挙げられます。それぞれ...
調査のまとめ
NVIDIA BioNeMo FrameworkおよびAlphaFold2、DiffDock 2.0モデルの利用方法について調査しました。 #### NVIDIA BioNeMo Framework...
調査のまとめ
NVIDIA BioNeMo Framework内のオープンソースモデルを実際に使用する方法について、詳細な調査結果をまとめました。NVIDIAは、これらのモデルをNVIDIA Inference M...

🏷 まとめ:研究開発を成功に導くAIモデル選定のポイント

AI分子生成の実用上のポイント | miLab - MI-6
ケモインフォマティクスや機械学習、生成モデルを用いた分子生成の実践的課題とその解決について解説します。合成可能性評価や逆合成解析、入力データ ...
mi-6.co.jpmi-6.co.jp
Augmented and Programmatically Optimized LLM Prompts Reduce ...
Discussion. This study provides a simple example of a molecular property prediction that allowed a detailed examination of strategies to reduce ...
nih.govnih.gov

📖 レポートに利用されていない参考文献

検索結果: 225件追加のソース: 0件チャット: 1件
BioNeMo Framework で切り拓く創薬研究の未来 - NVIDIA Developer
BioNeMo Framework は、大規模トランスフォーマー モデルを生体分子データに適用するために設計された AI プラットフォームであり、生物学的配列の解析、 ...
nvidia.comnvidia.com
薬剤設計を支援する解釈性の高いAI予測手法を開発 - 東京工業大学
本研究では、低分子化合物の性質の予測と解釈を行う新たなAI手法を提案するにあたり、化合物の構造式をグラフで表現して処理するグラフニューラル ...
titech.ac.jptitech.ac.jp
Meta Open Molecules 2025: 化学計算革命プロジェクトが切り開く ...
2025年5月、Meta社が発表したOpen Molecules 2025プロジェクトは、化学計算と分子設計の分野に革命的な変化をもたらす画期的な取り組みです。
note.comnote.com
NVIDIA 生成 AI が創薬と薬設計の次の時代を切り開く
コンピューター支援創薬エコシステムを推進する NVIDIA BioNeMo は現在、十数の生成 AI モデルとクラウド サービスを展開しています。
nvidia.co.jpnvidia.co.jp
量子化学技術で素材開発の「壁」を壊す! 新プラットフォームで ...
複雑な分子や材料のシミュレーションにおいて、オープンソースのソフトウェアと比較して最大10倍の精度向上を実現する。 今回のプラットフォームでは ...
itmedia.co.jpitmedia.co.jp
創薬のためのAIリソースページ|Nucleate Japan - note
旧来のde novo分子設計アルゴリズムは、標的の結合部位に適合させるために構造に基づくアプローチを用いていました。それに対し、新しいアプローチは合成 ...
note.comnote.com
Google DeepMindがAIですべての生命分子の構造と相互作用を予測できる ...
gigazine.netgigazine.net
生成AI開発にもオープンソースの波 先導する70社 - 日本経済新聞
nikkei.comnikkei.com
ChemChat:大規模言語モデルと化学の未来、外部ツールとチャットボット ...
ai-scholar.techai-scholar.tech
データ駆動型生成AIの限界に迫る-生成AIで信頼性の高い分子設計を実現 ...
yokohama-cu.ac.jpyokohama-cu.ac.jp
商用利用可能な対話AIがオープンソースとして公開、英語にも対応 ...
ledge.ailedge.ai
生成AIを支える技術 : 研究開発 : 日立評論
hitachihyoron.comhitachihyoron.com
AI分子生成の導入と基本手法の紹介 - Chem-Station (ケムステ)
本記事では、AIや情報技術を用いた分子生成技術の有機分子設計における有用性や代表的手法について解説します。
chem-station.comchem-station.com
分子生成AIの最新動向と応用事例:創薬と材料開発に革命をもたらす ...
分子生成AIは、既知の化合物データ(例:ZINC、ChEMBL、GDB-17)から分子構造のパターンや構造‐活性関係を学習し、目的に応じた新規分子をデータ駆動型で生成 ...
smeai.orgsmeai.org
有機分子をAIでつくる - 理化学研究所
まず、AIに有機分子データベースにある15万個以上の分子構造を学習させた。次にランダムに分子を設計させ、その分子が蛍光を発するかどうかを量子化学に ...
riken.jpriken.jp
「実際に合成可能な分子」を生成する画期的な分子生成モデル
3つの要点✔分子生成を「反応物選択と反応予測の組み合わせ」として捉え直す✔反応物の候補から「実際に使えそうな分子」を選び、そこから合成される ...
ai-scholar.techai-scholar.tech
合成手順を自ら導き出すAI - Nature Asia
経験を積んだ化学者が、AIが導き出した経路と人間が考案した経路を識別できるかどうか調べたのだ。9種類の分子の合成方法を各方法で1つずつ用意し、中国とドイツの研究 ...
natureasia.comnatureasia.com
AIによる有機分子の設計とその実験的検証に成功
まず、RNNとMCTS(モンテカルロ木探索)を組み合わせた手法で有機分子を生成する。次に、生成された有機分子の性質と安定性を、量子力学に基づいた分子 ...
jst.go.jpjst.go.jp
分子生成_苗头化合物发现_小分子药物设计_使用平台资产_用户指南_AI ...
huaweicloud.comhuaweicloud.com
AI_Drug: 分子生成模型之VAE(一)-CSDN博客
csdn.netcsdn.net
JCIM|结合AI与Docking的基于结构的分子从头生成模型- 知乎
zhihu.comzhihu.com
分子生成用户指南- iDrug
tencent.comtencent.com
利用Oracles 和实验反馈指导生成式分子设计- NVIDIA 技术博客
nvidia.comnvidia.com
AI提高从头设计的新化合物的可合成性
360doc.com360doc.com
分子工厂| DrugFlow Docs
drugflow.comdrugflow.com
阿斯利康迭代了7年的分子生成工具,现在走在哪里了- 知乎
zhihu.comzhihu.com
JACS|浙江大学侯廷军等:生成式AI助力药物分子结构优化全面综述-腾讯 ...
tencent.comtencent.com
Reinvent 4: Modern AI–driven generative molecule design
REINVENT 4 is a modern open-source generative AI framework for the design of small molecules. The software utilizes recurrent neural networks and transformer ...
biomedcentral.combiomedcentral.com
Generative Molecular Design Isn't As Easy As People Make It Look
While generative models provide an important source of ideas, we're still a long way from algorithms that can design molecules on their own.
practicalcheminformatics.blogspot.compracticalcheminformatics.blogspot.com
A survey of generative AI for de novo drug design: new frontiers in ...
In this survey, we organize de novo drug design into two overarching themes: small molecule and protein generation.
oup.comoup.com
Optimal Molecular Design: Generative Active Learning Combining ...
We describe an AL protocol which combines generative molecular AI, using REINVENT, and physics-based absolute binding free energy molecular dynamics simulation.
acs.orgacs.org
Generative AI Opening Next Era of Drug Discovery - NVIDIA Blog
NVIDIA BioNeMo, which is fueling the computer-aided drug discovery ecosystem, now features more than a dozen generative AI models and cloud services.
nvidia.comnvidia.com
Accelerating drug discovery with TamGen: A generative AI approach ...
TamGen offers a new approach to drug discovery by applying the principles of generative AI to molecular design.
microsoft.commicrosoft.com
[PDF] REINVENT 4: Modern AI–Driven Generative Molecule Design
REINVENT 4 is a modern open–source generative AI framework for the design of small molecules. The software utilizes recurrent neural networks and ...
chemrxiv.orgchemrxiv.org
How I Built a Generative AI Model that can Generate Novel Small ...
AI has the ability to sift through vast datasets to identify promising drug candidates and even designs new molecules, expediting the discovery phase.
medium.commedium.com
Deep generative molecular design reshapes drug discovery ...
sciencedirect.comsciencedirect.com
Machine learning-aided generative molecular design | Nature ...
nature.comnature.com
Artificial Intelligence for Autonomous Molecular Design: A Perspective
mdpi.commdpi.com
Generative Molecular Design. I read this paper: Machine… | by ...
medium.commedium.com
Build Generative AI Pipelines for Drug Discovery with NVIDIA ...
nvidia.comnvidia.com
Generative AI for designing and validating easily synthesizable ...
nature.comnature.com
Sharing new breakthroughs and artifacts supporting molecular ...
We're releasing several groundbreaking models, benchmarks, and datasets that will transform the way we approach molecular property prediction, language ...
meta.commeta.com
MolFCL: predicting molecular properties through chemistry-guided ...
We propose a molecular property prediction framework called MolFCL, which consists of fragment-based contrastive learning and functional group-based prompt ...
oup.comoup.com
MolRep: A Deep Representation Learning Library for Molecular ...
MolRep is a Python package for fairly measuring algorithmic progress on chemical property datasets. It currently provides a complete re-evaluation of 16 ...
github.comgithub.com
Molecular Property Prediction | Papers With Code
We introduce AutoGluon-Tabular, an open-source AutoML framework that requires only a single line of Python to train highly accurate machine learning models ...
paperswithcode.compaperswithcode.com
Effective and Explainable Molecular Property Prediction by Chain-of ...
These models are trained to perform tasks such as molecule generation, chemical entity recognition, reaction prediction, and molecular property ...
acs.orgacs.org
Optimize Development Process of New Drug Candidates - Dataiku
The Dataiku Molecular Property Prediction Solution helps perform molecular virtual screening on target protein responses.
dataiku.comdataiku.com
[PDF] An Open-Source Library for Transformer-Based Molecular Property ...
Predicting molecule properties is a predominant task in the drug discovery pipeline. A good predictive model is, there- fore, a key tool in this process as it ...
aaai.orgaaai.org
Fast and effective molecular property prediction with ...
nature.comnature.com
Molecular property prediction: recent trends in the era of ...
sciencedirect.comsciencedirect.com
Molecular Property Prediction by Combining LSTM and GAT
mdpi.commdpi.com
AI molecular property prediction for Parkinson's Disease reveals ...
sciencedirect.comsciencedirect.com
Large language models for scientific discovery in molecular ...
nature.comnature.com
This AI Paper from China Proposes SGGRL: A Novel Molecular ...
marktechpost.commarktechpost.com
AI model directly compares properties of potential new drugs
phys.orgphys.org
A systematic study of key elements underlying molecular property ...
nature.comnature.com
A deep learning method for predicting molecular properties and ...
sciencedirect.comsciencedirect.com
Automatic Prediction of Molecular Properties Using Substructure ...
acs.orgacs.org
Beginner's Guide to Generative Molecular Design - LinkedIn
The AI learns the complex probability distribution of the data, capturing not just 2D chemical graphs but also the subtle nuances of 3D geometry ...
linkedin.comlinkedin.com
Generative AI: A Step-by-Step Guide to Building Your First AI Model
In this article, you'll learn how to build your first AI model, step by step. We'll break down complex concepts into manageable chunks, making it easy for ...
dataengineeracademy.comdataengineeracademy.com
The Hitchhiker's Guide to Generative AI for Proteins - Tribe AI
This short introduction to generative AI in a biological context is for the ML engineers getting started in the biological space.
tribe.aitribe.ai
A Complete Guide on Generative AI in Drug Discovery - SparxIT
Explore how Generative AI in drug discovery accelerates processes by designing novel compounds and reducing R&D timelines.
sparxitsolutions.comsparxitsolutions.com
The Ultimate Guide to Generative AI: Day 1 | by Dipan Saha | Medium
In today's tutorial, we shall learn about the following topics -. Generative AI; How Generative AI works; Generative AI Model Types ...
medium.commedium.com
A Guide to Generative AI for Medicinal Chemists ... - YouTube
Drug Hunter's Dennis Koester, Director of Industry Research and Relations, hosts a conversation with Ashwini Ghogare, Ph.D., the Head of AI ...
youtube.comyoutube.com
How to Use Generative AI Effectively in Drug Discovery - Saama
Generative AI has the potential to fast-track the clinical development process, from molecule discovery to reaching database lock from clinical trials faster.
saama.comsaama.com
What is Generative AI? - GeeksforGeeks
geeksforgeeks.orggeeksforgeeks.org
The Comprehensive Guide to Understanding Generative AI | by ...
medium.commedium.com
Guiding Generative Molecular Design with Experimental Feedback ...
nvidia.comnvidia.com
Generative Artificial Intelligence for Drug Discovery: How the ...
springernature.comspringernature.com
Generative models for molecular discovery: Recent advances and ...
wiley.comwiley.com
[PDF] 合成可能な高分子をコンピュータで生成する新技術を開発
「SMiPoly」を開発し、オープンソースソフトウェアとして公開しました。このモデルに市. 販化合物を入力することで、原理的に合成可能な高分子を生成できます。SMiPoly ...
ism.ac.jpism.ac.jp
AIアシスタントとPythonパッケージのマニュアルを作る - Zenn
GitHub CopilotとSphinxを使って、ドキュメント(マニュアル)作成を行なった。試行錯誤しながらのため、詳細な記録とはできなかったが、自分にとって ...
zenn.devzenn.dev
高分子のデータ科学
そこで、高分子の重合に用いられている重合反応の種類が比較的少ないことに着目し、重合反応ルールーベースのSMiPoly(https://github.com/PEJpOhno/SMiPoly)12)やOpen ...
spsj.or.jpspsj.or.jp
SMiPoly: Generation of Synthesizable Polymer Virtual Library using ...
SMiPoly: Generation of Synthesizable Polymer Virtual Library using ... The source code of SMiPoly is available from the GitHub website.
chemrxiv.orgchemrxiv.org
smipoly - PyPI
SMiPoly (Small Molecules into Polymers) is rule-based virtual library generator for discovery of functional polymers.
pypi.orgpypi.org
大野技術士事務所 (@PEJpOhn) / X
Virtual polymer library generator #SMiPoly ver. 0.0.3 was released. An amount of memory usage was reduced. https://github.com/PEJpOhno/SMiPoly…
x.comx.com
Generation of a Synthesizable Polymer Virtual Library Using Rule ...
The source code of SMiPoly is available from the GitHub website(https://github.com/PEJpOhno/SMiPoly). A sample script to generate the ...
acs.orgacs.org
conda-forgeに自作ライブラリを登録した - Zenn
PythonでSMiPolyというライブラリを作り、PyPIで公開していますが、この度、condaでインストールできるように、conda-forgeに登録しました(Anaconda.org ...
zenn.devzenn.dev
SMiPoly: Generation of Synthesizable Polymer Virtual Library using ...
chemrxiv.orgchemrxiv.org
SMiPoly: Generation of a Synthesizable Polymer Virtual Library ...
We present Small Molecules into Polymers (SMiPoly), a Python library for virtual polymer generation that implements 22 chemical rules for commonly applied ...
acs.orgacs.org
conda-forgeに登録したパッケージのバージョンアップ - Zenn
こちらの記事で記載しているパッケージ(仮想高分子ライブラリ発生器 SMiPoly)をバージョンアップし、PyPIとconda-forgeに反映したので、次回に ...
zenn.devzenn.dev
【2024年1月時点】社内・外向けMI基盤/アプリを開発している化学 ...
アプリ名:SMiPoly(OSS). 市販の原料モノマーから反応様式を自動選出する仮想高分子生成モデルを公開ダイセルは、仮想高分子生成モデル「SMiPoly」を ...
note.comnote.com
Design of functional and sustainable polymers assisted by ...
nature.comnature.com
Activity · Future-House/ether0 - GitHub
A scientific reasoning model, dataset, and reward functions for chemistry. - Activity · Future-House/ether0.
github.comgithub.com
VPN接続状態のWSL2内でGithubにPush/Pullをしても応答が返っ ...
解決方法は、以下のコマンドをWSL2(Ubuntu)内で実行を行うことです。 $ sudo ip link set eth0 mtu 1200. 数字の部分がMTU値を設定する値になります。 私 ...
adglobe.co.jpadglobe.co.jp
基本的な使い方 - Tcpreplay
特定の速度で再送信したい場合は、 --mbps オプションを追加します。 # tcpreplay -i eth0 --mbps=510.5 smallFlows.pcap Actual: 14261 packets (9216531 bytes) sent in ...
otsuka752.github.iootsuka752.github.io
ether0: a scientific reasoning model for chemistry - FutureHouse
We are releasing a 24B open-weights reasoning model, ether0, that has been trained on tasks in chemistry. It is particularly good at designing drug-like ...
futurehouse.orgfuturehouse.org
RX72NでのEtherenet通信(ETHERC1_RMII使用時)の設定について
接続している基板のEthernet ICは1つ(アドレス0)です。そのためご指摘いただいたようにPHY-LSI address setting for ETHER0 → 1,PHY-LSI address setting ...
renesas.comrenesas.com
WSL2でgit pullをするとgnutls_handshake() failed: Error in ... - Qiita
これは、VPN で許可される MTU の大きさを示しています。 次に、Linux (WSL2内部) のコンソールで ip adrr を実行し、eth0'で始まる行に注目してください ...
qiita.comqiita.com
Net: FEC: can't find phy-handle Could not get PHY for eth0: addr 9 ...
The purpose of this project is to use the transceivers (SFP0). What I think is that the error comes from the PHY address. So, what should the ...
amd.comamd.com
OSSで実現するデータセンターネットワーク|【技業LOG】技術者 ...
NTTPCの技術担当者が解説するデータセンターネットワーク構築。今回はシンプルかつスケール可能なネットワークシステムを目指しネットワーク ...
nttpc.co.jpnttpc.co.jp
サーバのネットワーク速度の調査/測定方法
こんにちは。kyagi です。先日データセンタ内のサーバ群のうち、なぜか特定の1台だけネットワークの速度が極端に遅いという問題がありました。
unoh.github.iounoh.github.io
ether0 (Seoyoung Lee) · GitHub
github.comgithub.com
Etho Protocol (Ether-1) · GitHub
github.comgithub.com
GitHub - etherfi-protocol/smart-contracts: ether.fi protocol smart ...
github.comgithub.com
The Etherpad Foundation · GitHub
github.comgithub.com
ethernet-zero (eth0) · GitHub
github.comgithub.com
GitHub - realms-of-ether/realms-of-ether.github.io: Hosted version
github.comgithub.com
[Linux] ネットワーク・インターフェースの有効化/無効化 - Qiita
eth0等のネットワーク・インターフェースの有効/無効の切替方法メモ 旧来の方法 (ifconfig, ifdown, ifup) ifconfigか、ifdown, ifup という専用 ...
qiita.comqiita.com
Linux - 基本的なネットワーク構成
そのため、例えば eth0 に永続的に設定値を適用したい場合、/etc/sysconfig/network-scripts/ifcfg-eth0に記述を行います。 ◇ ifconfigコマンドによるIPアドレスの設定例 ...
infraexpert.cominfraexpert.com
IPコマンドの基本の使い方 #Linux - Qiita
... eth0 ip -6 addr show dev eth0. ※addrをaだけにしてもOK! 例、ip -4 a dev eth0. IPアドレスの追加/削除. 追加. Copied! ip addr add 192.168.10.10/24 ...
qiita.comqiita.com
運用・管理/マネージメントポート(eth0) - アライドテレシス
eth0は、本体のスイッチポート/VLANとは独立したインターフェースです。eth0とVLANの間で通信をするには、ルーティングの設定が必要です。 Note - eth0・VLAN間の ...
allied-telesis.co.jpallied-telesis.co.jp
11.2. インターフェース設定ファイル | Red Hat Enterprise Linux | 6
以下は、固定 IP アドレスを使用してシステム用の ifcfg-eth0 ファイルのサンプルです。
redhat.comredhat.com
ブリッジ機能を利用する(ETH0とETH1をスイッチングハブのよう ...
設定手順 · PC1からRooster NSXに接続します。 · ネットワーク->インターフェース設定ページを開き、インターフェース一覧からETH0の「編集」をクリックします。 · 一般設定 ...
sun-denshi.co.jpsun-denshi.co.jp
知っておくとちょっと便利!nmcli コマンドの使い方 ~デバイス編
例えば、eth0 の MTU (Maximum Transmission Unit) サイズを変更したい場合、下記の様に実行します。 # nmcli device modify eth0 mtu 5000 Connection ...
sios.jpsios.jp
ネットワ-クの基本設定などを確認(Linux版)
インターフェース eth0 に IP アドレスを与える. ルーターを越えない隣接ホストには ping -nr (IPアドレス) で通信を確認できるようになる. インターフェースが生きている ...
kobe-u.ac.jpkobe-u.ac.jp
ネットワークインターフェースの設定 - エンベーダー
こちらでは、ネットワークインタフェースの設定や変更について解説します。 hostname. hostname はホスト名の表示、設定を行います。 ホスト名とは、ネットワーク上の ...
envader.plusenvader.plus
ネットワークカードを認識させるには - Linux & OSS - ITmedia
まず、ifconfigコマンドでeth0が認識されているかどうかを確認する。 また、lsmodコマンドで読み込み済みのモジュールも確認する。
itmedia.co.jpitmedia.co.jp
Tutorial Módulo Ethernet ENC28J60 y Arduino
naylampmechatronics.comnaylampmechatronics.com
How To Do Ethernet in FPGA - Easy Tutorial
youtube.comyoutube.com
ESP32 - Ethernet | ESP32 Tutorial
esp32io.comesp32io.com
Ethernet Tutorial - Part I: Networking Basics | Lantronix
lantronix.comlantronix.com
How to Wire Up Ethernet Plugs the EASY WAY! (Cat5e / Cat6 RJ45 Pass Through Connectors)
youtube.comyoutube.com
Tutorial Ethernet Shield y Arduino
naylampmechatronics.comnaylampmechatronics.com
Ethereum - Tutorial 2 - Ether
youtube.comyoutube.com
A Really Low Level Guide To Doing Ethernet On An FPGA | Hackaday
hackaday.comhackaday.com
Ethernet Shield - Arduino Tutorial
circuits-diy.comcircuits-diy.com
Ethernet Tutorial - Part II: Adding Speed | Lantronix
lantronix.comlantronix.com
boltz-1 · GitHub Topics
A toolkit developed to predict and analyze PROTAC-mediated ternary complexes using AlphaFold3 and Boltz-1. deep-learning protein-structure-prediction ...
github.comgithub.com
Boltz-1 Democratizing Biomolecular Interaction Modeling - bioRxiv
In this paper, we introduce Boltz-1, an open-source deep learning model incorporating innovations in model architecture, speed optimization, and data ...
biorxiv.orgbiorxiv.org
[PDF] Boltz-1 - Gabriele Corso
Our experimental results show that Boltz-1 delivers perfor- mance on par with the state-of-the-art commercial models on a wide range of structures and metrics.
gcorso.github.iogcorso.github.io
Introducing Boltz-1: Democratizing Biomolecular Interaction Modeling
Boltz-1 stands as the first fully commercially available open-source model to achieve AlphaFold3-level accuracy in predicting the 3D structure of biomolecular ...
mit.edumit.edu
[PDF] タンパク質 体構造予測の実践と応
Boltz-1で複数のポリペプチド鎖に対する構造予測の⽅法(MSAの準備. ⽅法)が分かりませんでしたので、ご紹介いただけると幸いです。 localcolabfoldで複数 ...
biosciencedbc.jpbiosciencedbc.jp
MIT researchers introduce Boltz-1, a fully open-source model for ...
MIT scientists have released a powerful, open-source AI model, called Boltz-1, that could significantly accelerate biomedical research and drug development.
mit.edumit.edu
Gabriele Corso on X: "@jeremyWohlwend @pas_saro To read more ...
To read more about Boltz-1 check out: - Our short blog-post https://jclinic.mit.edu/boltz-1/ - Our technical report: https://gcorso.github.io/assets/boltz1.pdf
twitter.comtwitter.com
[PDF] Boltzdesign1: Inverting All-Atom Structure Prediction Model ... - bioRxiv
We present. BoltzDesign1, which inverts the Boltz-1 model, an open source reproduction of AlphaFold3, to enable the design of protein binders ...
biorxiv.orgbiorxiv.org
GitHub - yehlincho/BoltzDesign1
github.comgithub.com
Boltz-1: Fully open-source model rivals AlphaFold3 for predicting ...
phys.orgphys.org
MIT Unveils Boltz-1: An Open-Source Tool for Biomolecular ...
cbirt.netcbirt.net
MIT Researchers Propose Boltz-1: The First Open-Source AI Model ...
marktechpost.commarktechpost.com
Boltz-1: Open-Source Biomolecular Interaction Modeling with Python ...
stackademic.comstackademic.com
Is there an update of Boltz-1 ? · Issue #715 · sokrypton/ColabFold
github.comgithub.com
Tool: Boltz - UCSF RBVI
Boltz installation only needs to be done once per computer, as long as the ChimeraX installation is not moved or deleted. Clicking the Install Boltz button on ...
ucsf.eduucsf.edu
yousanのメモ
まずは ReadMe通りにセットアップを行います。 ... uv pip install -e . 手元の環境だとtorchがCUDA対応のものがデフォルトでインストールされず、そのまま ...
ayousanz.hatenadiary.jpayousanz.hatenadiary.jp
Use Boltz-1 (AlphaFold3) Online - Neurosnap
The Boltz-1 (AlphaFold3) online webserver allows anybody with a Neurosnap account to run and access Boltz-1 (AlphaFold3), no downloads required.
neurosnap.aineurosnap.ai
Boltz1 structure prediction software installation - Biostars
I'm trying to run the Boltz1 software on my computer that has GPU. The installation was pretty straightforward according to the github page.
biostars.orgbiostars.org
Boltz - Chaperone
--cache PATH The directory where to download the data and model. Default is ~/.boltz. --checkpoint PATH An optional checkpoint, will use the provided Boltz-1 ...
chaperone.jpchaperone.jp
How to run Boltz-1? An AI-based Molecular Structure Prediction Tool.
youtube.comyoutube.com
Boltz-1 and the Future of Biomolecular Foundation Models
youtube.comyoutube.com
Boltz-1 Democratizing Biomolecular Interaction Modeling | bioRxiv
biorxiv.orgbiorxiv.org
devalab/molgpt - GitHub
In this work, we train small custom GPT on Moses and Guacamol dataset with next token prediction task. The model is then used for unconditional and conditional ...
github.comgithub.com
PeterGriffinJin/Awesome-Language-Model-on-Graphs - GitHub
MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction preprint. Yuyan Liu, Sirui Ding, Sheng Zhou, Wenqi Fan, Qiaoyu Tan ...
github.comgithub.com
QizhiPei/Awesome-Biomolecule-Language-Cross-Modeling - GitHub
The repository for Leveraging Biomolecule and Natural Language through Multi-Modal Learning: A Survey, including related models, datasets/benchmarks, and other ...
github.comgithub.com
Paper tables with annotated results for MolecularGPT: Open Large ...
This study demonstrates the potential of LLMs as effective few-shot molecular property predictors. The code is available at https://github.com/NYUSHCS/ ...
paperswithcode.compaperswithcode.com
Data Intelligence and Reasoning Lab@NYU(Shanghai) - GitHub
Repositories ; MolecularGPT · NYUSHCS/MolecularGPT's past year of commit activity · 30 ; UniGLM · NYUSHCS/UniGLM's past year of commit activity · 14 ; GAugLLM · NYUSHCS ...
github.comgithub.com
GFMPapers: Must-read papers on graph foundation models (GFMs)
[arXiv 2024.6] MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction [pdf]. 3. GNN+LLM-based Papers. [ICLR 2024] Label-free ...
github.comgithub.com
MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
This study demonstrates the potential of LLMs as effective few-shot molecular property predictors. The code is available at https://github.com/NYUSHCS/ ...
arxiv.orgarxiv.org
VV123/cMolGPT: GPT (Generative Pre-trained Transformer) for de ...
A conditional generative pre-trained transformer for target-specific de novo molecular generation. Enforcing target embeddings as queries and keys.
github.comgithub.com
ML+AI - CADD Vault
MolecularGPT: MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction Code Last Commit · Publication. MPGNN. Graphormer: deep ...
drugbud-suite.github.iodrugbud-suite.github.io
MolecularGPT: Revolutionizing Molecular Property Prediction with ...
cbirt.netcbirt.net
dataloaders cannot work · Issue #1 · NYUSHCS/MolecularGPT · GitHub
github.comgithub.com
The proposed MolecularGPT framework. To instructionally fine-tune ...
researchgate.netresearchgate.net
GitHub - Graph-RAG/GraphRAG
github.comgithub.com
GitHub - PEESEgroup/Awesome-Materials-Aware-Large-Language-Models
github.comgithub.com
Weitong Zhang على X: "Will be presenting our poster MoleculeGPT ...
x.comx.com
MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
For example, when fine-tuning LLaMA2 on the 0-shot instruction set constructed using the T 𝑇 T italic_T template, the resulting 0-shot_tuning ...
arxiv.orgarxiv.org
[PDF] MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
To instructionally fine-tune LLMs for MPP tasks, we construct a hybrid instruction set that includes both zero-shot and few-shot instructions across more than ...
openreview.netopenreview.net
Enhance the comprehensive generative ability of molecular GPT ...
It trains a transformer decoder on the next token prediction task and uses masked self-attention to generate lead-like molecules.
sciencedirect.comsciencedirect.com
MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
MolecularGPT is a powerful AI model that can learn to predict the properties of molecules with just a few examples. This is useful for drug ...
aimodels.fyiaimodels.fyi
The few-shot inference results of MolecularGPT using a ICL template...
The few-shot inference results of MolecularGPT using a ICL template that organizes the retrieval demonstrations in a ascending order. Source publication.
researchgate.netresearchgate.net
A systematic review of deep learning chemical language models in ...
In this study, we present a systematic review that offers a statistical description and comparison of the strategies utilized to generate molecules through ...
biomedcentral.combiomedcentral.com
PDF) MolecularGPT: Open Large Language Model (LLM) for Few-Shot ...
researchgate.netresearchgate.net
MolGPT: Molecular Generation Using a Transformer-Decoder Model ...
acs.orgacs.org
Literature Review] DrugPilot: LLM-based Parameterized Reasoning ...
themoonlight.iothemoonlight.io
Releases · Future-House/ether0 - GitHub
A scientific reasoning model, dataset, and reward functions for chemistry. - Releases · Future-House/ether0.
github.comgithub.com
Issues · Future-House/ether0 - GitHub
A scientific reasoning model, dataset, and reward functions for chemistry. - Issues · Future-House/ether0.
github.comgithub.com
Security Overview · Future-House/ether0 - GitHub
No security policy detected. This project has not set up a SECURITY.md file yet. There aren't any published security advisories.
github.comgithub.com
FutureHouse - GitHub
ether0 ether0 Public. A scientific reasoning model, dataset, and reward functions for chemistry. Python 122 13 · ldp ldp Public. Framework enabling modular ...
github.comgithub.com
Settings · Custom properties · Future-House/ether0 - GitHub
Custom properties allow you to decorate your repository with information such as compliance frameworks, data sensitivity, or project details. No custom ...
github.comgithub.com
ethers-io · GitHub
github.comgithub.com
Odd history showing up in account · Issue #5984 · MetaMask ...
github.comgithub.com
Etheroit (Etheroit) · GitHub
github.comgithub.com
Trying to send data with transaction when on testnet causes error ...
github.comgithub.com
Sequence Diagrams with messageAlign smash text with `<br>` · Issue ...
github.comgithub.com
Dual WAN Flow Base PCC nftables load balancing example script · GitHub
github.comgithub.com
GitHub - chafey/ethereum-private-network: Instructions on how to ...
github.comgithub.com
GitHub - rsc/plan9: Plan 9 from Bell Labs (9legacy, bootable)
github.comgithub.com
Boltz-1 · Issue #518 · vscentrum/vsc-software-stack - GitHub
first do CPU-only, then also GPU; check if PyTorch >= 2.2 is really needed, try with PyTorch 2.1.2 first. effort: (TBD); other install methods.
github.comgithub.com
Australian-Structural-Biology-Computing/boltz_apptainer - GitHub
Files which allow you to set up Boltz-1 in an apptainer image. This allows for running on HPCs without sudo or docker access.
github.comgithub.com
GitHub - bsnk-dev/boltz-engine: A superfast microservices engine ...
github.comgithub.com
Boltz · GitHub
github.comgithub.com
Activity · NYUSHCS/MolecularGPT · GitHub
Contribute to NYUSHCS/MolecularGPT development by creating an account on GitHub.
github.comgithub.com
README.md - BUPT-GAMMA/GFMPapers - GitHub
[arXiv 2024.6] MolecularGPT: Open Large Language Model (LLM) for Few-Shot Molecular Property Prediction [pdf]. 3. GNN+LLM-based Papers. [ICLR 2024] Label-free ...
github.comgithub.com
HICAI-ZJU/Scientific-LLM-Survey: Scientific Large Language Models
This repository collects papers on scientific large language models, particularly in the domains of biology and chemistry.
github.comgithub.com
GitHub - OpenDFM/LLM4Chemistry: [COLING 2025]A curated paper list ...
github.comgithub.com
Custom Drug Discovery Workflows | Tutorial on NVIDIA BioNeMo ...
NVIDIA BioNeMo is a cloud-based AI service for drug discovery, offering pretrained models like MegaMolBART and MoFlow for chemistry, ...
youtube.comyoutube.com
Folding the human proteome using BioNeMo: A fused dataset of ...
The remaining 9,404 sequences were modeled with AlphaFold 2 using NVIDIA's BioNeMo platform. In total 41,688 AlphaFold 2 models are included ...
nature.comnature.com
Configuring the NIM at Runtime — NVIDIA NIM for AlphaFold2 1.0.0 ...
The location of the NIM cache can be changed on both the local file system and within the NIM. This is useful when a larger drive is needed to ...
nvidia.comnvidia.com
examples/alphafold2.md.hold
The SBGrid installation of Alphafold2 does not require Docker to run, but does require a relatively recent NVidia GPU and updated driver. AlphaFold requires ...
sbgrid.orgsbgrid.org
BioNeMo for Biopharma | Drug Discovery with Generative AI | NVIDIA
nvidia.comnvidia.com
alphafold2 Model by DeepMind | NVIDIA NIM
nvidia.comnvidia.com
Accelerate AI in Healthcare: NVIDIA BioNeMo + GKE | Google Cloud Blog
google.comgoogle.com
Spotlight: Drug Discovery Startup Protai Advances Complex ...
nvidia.comnvidia.com
Accelerating Drug Discovery at Receptor.AI with NVIDIA BioNeMo ...
nvidia.comnvidia.com
GKE 上の NVIDIA BioNeMo Framework と Blueprint を使用して ...
このガイドでは、効率的な研究のために、Google Cloud の GKE に NVIDIA BioNeMo と NIM をデプロイする方法について説明します。
google.comgoogle.com
[PDF] Pure Storage GenAI Solution for Drug Discovery with NVIDIA BioNeMo
NVIDIA BioNeMo provides customizable AI models for various biomolecular tasks. These include predicting 3D protein structures, generating novel molecules, and ...
purestorage.compurestorage.com
Find the Next Blockbuster with NVIDIA BioNeMo Framework ... - AWS
In this post, we'll explore how customers can leverage the BioNeMo framework on Amazon SageMaker to enhance and accelerate drug R&D.
amazon.comamazon.com
Integrating NVIDIA BioNeMo NIM Microservices in Self-Driving ...
This PoC effectively showcases how NVIDIA's BioNeMo NIM microservices are integrated with Artificial's orchestration platform to facilitate advanced molecular ...
artificial.comartificial.com
New Models MolMIM and DiffDock Power Molecule Generation and ...
nvidia.comnvidia.com
What is BioNeMo? — NVIDIA BioNeMo Framework
nvidia.comnvidia.com
Overview — NVIDIA NIM for DiffDock 1.2.0 documentation
nvidia.comnvidia.com
What is AlphaFold2? | NVIDIA Glossary
nvidia.comnvidia.com
Build A Generative Protein Binder Design Pipeline Blueprint by ...
nvidia.comnvidia.com
Tag: BioNeMo | NVIDIA Technical Blog
nvidia.comnvidia.com
alphafold2-multimer Model by DeepMind | NVIDIA NIM
nvidia.comnvidia.com
Unlock Gene Networks Using Limited Data with AI Model Geneformer ...
nvidia.comnvidia.com
Overview — NVIDIA NIM for AlphaFold2
nvidia.comnvidia.com
Accelerated Molecular Modeling with NVIDIA cuEquivariance and ...
nvidia.comnvidia.com
Nvidia Leads The HPC Landscape At SuperComputing '24
forbes.comforbes.com
NVIDIA's BioNeMo Framework Unites Pharma, TechBio, and AI Leaders ...
biopharmaapac.combiopharmaapac.com
Generative AI for Protein Binder Design - Blog | MLOps Community
mlops.communitymlops.community
Quickstart Guide — NVIDIA NIM for AlphaFold2-Multimer
Pull the NIM container, run it with the provided command, wait for health check, then run inference using the provided command.
nvidia.comnvidia.com
Overview — NVIDIA NIM for AlphaFold2-Multimer
The NVIDIA AlphaFold2-Multimer NIM can: Predict protein structure given multiple protein sequences. Predict a multiple sequence alignments (MSA) ...
nvidia.comnvidia.com
NVIDIA NIM for AlphaFold2
NVIDIA NIM for AlphaFold2 can predict structure from an input sequence, predict MSA from an input sequence, and predict structure from an input ...
nvidia.comnvidia.com
Inference Endpoints — NVIDIA NIM for AlphaFold2-Multimer
This endpoint is useful for batching long-running and CPU-intensive MSA runs prior to structure prediction.
nvidia.comnvidia.com
AlphaFold2 NIM Performance — NVIDIA NIM for AlphaFold2 1.0.0 ...
nvidia.comnvidia.com
Release Notes - BioNeMo Framework - NVIDIA Docs Hub
BioNeMo Framework v2.0. New Features: ESM2 implementation; State of the art training performance and equivalent accuracy to the reference implementation; 650M, ...
nvidia.comnvidia.com
DiffDock Model Training using BioNeMo - NVIDIA Docs Hub
This DiffDock model training example walkthrough will show how to utilize the compute resources, download and preprocess the datasets, and perform model ...
nvidia.comnvidia.com
DiffDock: Preparing Workspace and Data for Pre-training
This section outlines the steps to prepare your workspace with pre-processed files for training DiffDock using the NVIDIA NGC platform.
nvidia.comnvidia.com
Release Notes - BioNeMo Framework - NVIDIA Docs Hub
ESM2 fine-tuning script with CLI (finetune_esm2) that supports sequence-level/token-level classification/regression using a CSV dataset. Brev.dev launchable ...
nvidia.comnvidia.com
Release Notes — NVIDIA BioNeMo Framework
The BioNeMo Framework release is designed to ship code and an environment that would be executed on local workstations, or deployed on clusters for large scale ...
nvidia.comnvidia.com
EquiDock Model Training using BioNeMo - NVIDIA Docs Hub
This EquiDock model training example walkthrough will show how to utilize the compute resources, download and preprocess the datasets, and perform model ...
nvidia.comnvidia.com
NVIDIA BioNeMo: AI for Drug Discovery | by Generative AI | Medium
medium.commedium.com
Protein language model training with NVIDIA BioNeMo framework on ...
amazon.comamazon.com
ESM1nv Model Training using BioNeMo — NVIDIA BioNeMo Framework
nvidia.comnvidia.com
要約の参照
ご提示のモデルの中には、大規模言語モデル(LLM)の技術をベースにしているものが複数含まれています。これらのモデルは、化学構造をSMILESのようなテキスト形式で表現し、言語モデルの能力を応用して新し...

📊 ドメイン統計

参照ドメイン数: 109引用済み: 17総文献数: 431
1
Favicon for https://github.comgithub.com
引用: 21件/ 総数: 120件
引用率: 17.5%
2
Favicon for https://nvidia.comnvidia.com
引用: 17件/ 総数: 79件
引用率: 21.5%
3
Favicon for https://mi-6.co.jpmi-6.co.jp
引用: 2件/ 総数: 3件
引用率: 66.7%
4
Favicon for https://ledge.ailedge.ai
引用: 2件/ 総数: 3件
引用率: 66.7%
5
Favicon for https://nih.govnih.gov
引用: 2件/ 総数: 3件
引用率: 66.7%
6
Favicon for https://qiita.comqiita.com
引用: 1件/ 総数: 4件
引用率: 25.0%
7
Favicon for https://arxiv.orgarxiv.org
引用: 1件/ 総数: 4件
引用率: 25.0%
8
Favicon for https://nikkeibp.co.jpnikkeibp.co.jp
引用: 1件/ 総数: 2件
引用率: 50.0%
9
Favicon for https://twitter.comtwitter.com
引用: 1件/ 総数: 2件
引用率: 50.0%
10
Favicon for https://huggingface.cohuggingface.co
引用: 1件/ 総数: 2件
引用率: 50.0%
11
Favicon for https://sbgrid.orgsbgrid.org
引用: 1件/ 総数: 2件
引用率: 50.0%
12
Favicon for https://aibase.comaibase.com
引用: 1件/ 総数: 1件
引用率: 100.0%
13
Favicon for https://prtimes.jpprtimes.jp
引用: 1件/ 総数: 1件
引用率: 100.0%
14
Favicon for https://moleculeinsight.commoleculeinsight.com
引用: 1件/ 総数: 1件
引用率: 100.0%
15
Favicon for https://neovarsity.orgneovarsity.org
引用: 1件/ 総数: 1件
引用率: 100.0%
16
Favicon for https://piwheels.orgpiwheels.org
引用: 1件/ 総数: 1件
引用率: 100.0%
17
Favicon for https://lhlunoaghomffbnrcfkx.supabase.colhlunoaghomffbnrcfkx.supabase.co
引用: 1件/ 総数: 1件
引用率: 100.0%
18
Favicon for https://acs.orgacs.org
引用: 0件/ 総数: 16件
引用率: 0.0%
19
Favicon for https://nature.comnature.com
引用: 0件/ 総数: 10件
引用率: 0.0%
20
Favicon for https://biomedcentral.combiomedcentral.com
引用: 0件/ 総数: 7件
引用率: 0.0%
21
Favicon for https://youtube.comyoutube.com
引用: 0件/ 総数: 7件
引用率: 0.0%
22
Favicon for https://sciencedirect.comsciencedirect.com
引用: 0件/ 総数: 6件
引用率: 0.0%
23
Favicon for https://cbirt.netcbirt.net
引用: 0件/ 総数: 6件
引用率: 0.0%
24
Favicon for https://researchgate.netresearchgate.net
引用: 0件/ 総数: 6件
引用率: 0.0%
25
Favicon for https://chemrxiv.orgchemrxiv.org
引用: 0件/ 総数: 5件
引用率: 0.0%
26
Favicon for https://medium.commedium.com
引用: 0件/ 総数: 5件
引用率: 0.0%
27
Favicon for https://zenn.devzenn.dev
引用: 0件/ 総数: 4件
引用率: 0.0%
28
Favicon for https://pypi.orgpypi.org
引用: 0件/ 総数: 4件
引用率: 0.0%
29
Favicon for https://futurehouse.orgfuturehouse.org
引用: 0件/ 総数: 4件
引用率: 0.0%
30
Favicon for https://mit.edumit.edu
引用: 0件/ 総数: 4件
引用率: 0.0%
31
Favicon for https://openreview.netopenreview.net
引用: 0件/ 総数: 4件
引用率: 0.0%
32
Favicon for https://google.comgoogle.com
引用: 0件/ 総数: 4件
引用率: 0.0%
33
Favicon for https://note.comnote.com
引用: 0件/ 総数: 3件
引用率: 0.0%
34
Favicon for https://yokohama-cu.ac.jpyokohama-cu.ac.jp
引用: 0件/ 総数: 3件
引用率: 0.0%
35
Favicon for https://practicalcheminformatics.blogspot.compracticalcheminformatics.blogspot.com
引用: 0件/ 総数: 3件
引用率: 0.0%
36
Favicon for https://x.comx.com
引用: 0件/ 総数: 3件
引用率: 0.0%
37
Favicon for https://biorxiv.orgbiorxiv.org
引用: 0件/ 総数: 3件
引用率: 0.0%
38
Favicon for https://neurosnap.aineurosnap.ai
引用: 0件/ 総数: 3件
引用率: 0.0%
39
Favicon for https://amazon.comamazon.com
引用: 0件/ 総数: 3件
引用率: 0.0%
40
Favicon for https://forbes.comforbes.com
引用: 0件/ 総数: 3件
引用率: 0.0%
41
Favicon for https://itmedia.co.jpitmedia.co.jp
引用: 0件/ 総数: 2件
引用率: 0.0%
42
Favicon for https://ai-scholar.techai-scholar.tech
引用: 0件/ 総数: 2件
引用率: 0.0%
43
Favicon for https://huaweicloud.comhuaweicloud.com
引用: 0件/ 総数: 2件
引用率: 0.0%
44
Favicon for https://zhihu.comzhihu.com
引用: 0件/ 総数: 2件
引用率: 0.0%
45
Favicon for https://tencent.comtencent.com
引用: 0件/ 総数: 2件
引用率: 0.0%
46
Favicon for https://oup.comoup.com
引用: 0件/ 総数: 2件
引用率: 0.0%
47
Favicon for https://mdpi.commdpi.com
引用: 0件/ 総数: 2件
引用率: 0.0%
48
Favicon for https://paperswithcode.compaperswithcode.com
引用: 0件/ 総数: 2件
引用率: 0.0%
49
Favicon for https://marktechpost.commarktechpost.com
引用: 0件/ 総数: 2件
引用率: 0.0%
50
Favicon for https://phys.orgphys.org
引用: 0件/ 総数: 2件
引用率: 0.0%
51
Favicon for https://linkedin.comlinkedin.com
引用: 0件/ 総数: 2件
引用率: 0.0%
52
Favicon for https://naylampmechatronics.comnaylampmechatronics.com
引用: 0件/ 総数: 2件
引用率: 0.0%
53
Favicon for https://lantronix.comlantronix.com
引用: 0件/ 総数: 2件
引用率: 0.0%
54
Favicon for https://biosciencedbc.jpbiosciencedbc.jp
引用: 0件/ 総数: 2件
引用率: 0.0%
55
Favicon for https://stackademic.comstackademic.com
引用: 0件/ 総数: 2件
引用率: 0.0%
56
Favicon for https://mlops.communitymlops.community
引用: 0件/ 総数: 2件
引用率: 0.0%
57
Favicon for https://titech.ac.jptitech.ac.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
58
Favicon for https://nvidia.co.jpnvidia.co.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
59
Favicon for https://gigazine.netgigazine.net
引用: 0件/ 総数: 1件
引用率: 0.0%
60
Favicon for https://nikkei.comnikkei.com
引用: 0件/ 総数: 1件
引用率: 0.0%
61
Favicon for https://hitachihyoron.comhitachihyoron.com
引用: 0件/ 総数: 1件
引用率: 0.0%
62
Favicon for https://chem-station.comchem-station.com
引用: 0件/ 総数: 1件
引用率: 0.0%
63
Favicon for https://smeai.orgsmeai.org
引用: 0件/ 総数: 1件
引用率: 0.0%
64
Favicon for https://riken.jpriken.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
65
Favicon for https://natureasia.comnatureasia.com
引用: 0件/ 総数: 1件
引用率: 0.0%
66
Favicon for https://jst.go.jpjst.go.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
67
Favicon for https://csdn.netcsdn.net
引用: 0件/ 総数: 1件
引用率: 0.0%
68
Favicon for https://360doc.com360doc.com
引用: 0件/ 総数: 1件
引用率: 0.0%
69
Favicon for https://drugflow.comdrugflow.com
引用: 0件/ 総数: 1件
引用率: 0.0%
70
Favicon for https://microsoft.commicrosoft.com
引用: 0件/ 総数: 1件
引用率: 0.0%
71
Favicon for https://meta.commeta.com
引用: 0件/ 総数: 1件
引用率: 0.0%
72
Favicon for https://dataiku.comdataiku.com
引用: 0件/ 総数: 1件
引用率: 0.0%
73
Favicon for https://aaai.orgaaai.org
引用: 0件/ 総数: 1件
引用率: 0.0%
74
Favicon for https://dataengineeracademy.comdataengineeracademy.com
引用: 0件/ 総数: 1件
引用率: 0.0%
75
Favicon for https://tribe.aitribe.ai
引用: 0件/ 総数: 1件
引用率: 0.0%
76
Favicon for https://sparxitsolutions.comsparxitsolutions.com
引用: 0件/ 総数: 1件
引用率: 0.0%
77
Favicon for https://saama.comsaama.com
引用: 0件/ 総数: 1件
引用率: 0.0%
78
Favicon for https://geeksforgeeks.orggeeksforgeeks.org
引用: 0件/ 総数: 1件
引用率: 0.0%
79
Favicon for https://springernature.comspringernature.com
引用: 0件/ 総数: 1件
引用率: 0.0%
80
Favicon for https://wiley.comwiley.com
引用: 0件/ 総数: 1件
引用率: 0.0%
81
Favicon for https://ism.ac.jpism.ac.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
82
Favicon for https://spsj.or.jpspsj.or.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
83
Favicon for https://adglobe.co.jpadglobe.co.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
84
Favicon for https://otsuka752.github.iootsuka752.github.io
引用: 0件/ 総数: 1件
引用率: 0.0%
85
Favicon for https://renesas.comrenesas.com
引用: 0件/ 総数: 1件
引用率: 0.0%
86
Favicon for https://amd.comamd.com
引用: 0件/ 総数: 1件
引用率: 0.0%
87
Favicon for https://nttpc.co.jpnttpc.co.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
88
Favicon for https://unoh.github.iounoh.github.io
引用: 0件/ 総数: 1件
引用率: 0.0%
89
Favicon for https://infraexpert.cominfraexpert.com
引用: 0件/ 総数: 1件
引用率: 0.0%
90
Favicon for https://allied-telesis.co.jpallied-telesis.co.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
91
Favicon for https://redhat.comredhat.com
引用: 0件/ 総数: 1件
引用率: 0.0%
92
Favicon for https://sun-denshi.co.jpsun-denshi.co.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
93
Favicon for https://sios.jpsios.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
94
Favicon for https://kobe-u.ac.jpkobe-u.ac.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
95
Favicon for https://envader.plusenvader.plus
引用: 0件/ 総数: 1件
引用率: 0.0%
96
Favicon for https://esp32io.comesp32io.com
引用: 0件/ 総数: 1件
引用率: 0.0%
97
Favicon for https://hackaday.comhackaday.com
引用: 0件/ 総数: 1件
引用率: 0.0%
98
Favicon for https://circuits-diy.comcircuits-diy.com
引用: 0件/ 総数: 1件
引用率: 0.0%
99
Favicon for https://gcorso.github.iogcorso.github.io
引用: 0件/ 総数: 1件
引用率: 0.0%
100
Favicon for https://ucsf.eduucsf.edu
引用: 0件/ 総数: 1件
引用率: 0.0%
101
Favicon for https://ayousanz.hatenadiary.jpayousanz.hatenadiary.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
102
Favicon for https://biostars.orgbiostars.org
引用: 0件/ 総数: 1件
引用率: 0.0%
103
Favicon for https://chaperone.jpchaperone.jp
引用: 0件/ 総数: 1件
引用率: 0.0%
104
Favicon for https://drugbud-suite.github.iodrugbud-suite.github.io
引用: 0件/ 総数: 1件
引用率: 0.0%
105
Favicon for https://aimodels.fyiaimodels.fyi
引用: 0件/ 総数: 1件
引用率: 0.0%
106
Favicon for https://themoonlight.iothemoonlight.io
引用: 0件/ 総数: 1件
引用率: 0.0%
107
Favicon for https://purestorage.compurestorage.com
引用: 0件/ 総数: 1件
引用率: 0.0%
108
Favicon for https://artificial.comartificial.com
引用: 0件/ 総数: 1件
引用率: 0.0%
109
Favicon for https://biopharmaapac.combiopharmaapac.com
引用: 0件/ 総数: 1件
引用率: 0.0%

このレポートが参考になりましたか?

あなたの仕事の調査業務をワンボタンでレポートにできます。

無料でリサーチ

新しいテーマを調査する

運営会社サービス概要メディア
  • 📜要約
  • 📊ビジュアライズ
  • 🖼関連する画像
  • 🔍詳細
    • 🏷はじめに:オープンソースAIが拓く分子設計の新時代
    • 🏷目的別に選ぶ!主要オープンソース分子生成AIモデルカタログ
    • 🏷【実践編】代表的モデルのインストールと基本操作ガイド
    • 🏷まとめ:研究開発を成功に導くAIモデル選定のポイント
  • 🖍考察
  • 📚参考文献
    • 📖利用された参考文献
    • 📖未使用の参考文献
    • 📊ドメイン統計