エンタープライズ対応マルチモーダルAI「Step 3.7 Flash」をNVIDIA GPU上で実行可能に
本文の状態
日本語全文を表示中
詳細モードで約6分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
NVIDIA Developer Blog
NVIDIAが、エンタープライズ向けマルチモーダルAIモデル「Step 3.7 Flash」を自社のGPU環境で効率的に実行できる機能を公開した。これにより、企業は高性能なAI処理を迅速に導入できるようになる。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
AI アプリケーションは、テキスト生成を超え、画像、ドキュメント、動画、言語をリアルタイムで知覚・検索・推論できるマルチモーダルシステムへと進化し、断片的な情報を実行可能なインサイトに変えています。
StepFun 最新作の Step 3.7 Flash は、これらの機能をプロダクションおよびエンタープライズスケールで実現可能にし、NVIDIA アクセラレーションインフラ上で利用できます。これは 198B パラメータの Mixture-of-Experts(MoE)ビジョンランゲージモデルであり、順伝播ごとに約 11B の活性化パラメータを持ち、知覚・検索・多段階推論を組み合わせたアジェンティックワークフローをプロダクションスケールで最適化しています。
ネイティブの画像および動画入力に対応し、低・中・高の 3 つの構成可能な推論レベルと 256k のコンテキストウィンドウを備え、金融分析、並行するコーディングエージェント、その他の高スループットなマルチモーダルユースケースといったエンタープライズ用途向けに設計されています。開発者は、メモリ帯域幅およびストレージ要件の削減により推論速度が向上するよう、Hugging Face を通じて入手可能な StepFun の NVFP4 量子化チェックポイントを利用できます。
モデル:Step 3.7 Flash
総パラメータ数:198B
ビジュアルエンコーダーパラメータ数:1.8B
活性化パラメータ数:11B
コンテキスト長:256K
エキスパート数:288(8 個が活性)
*表 1. パラメータ数、コンテキスト長、MoE 構成など、Step 3.7 Flash の主要仕様概要*

Step 3.7 Flash は、NVIDIA ハードウェア向けに最適化されたカーネルを利用するために、SGLang、NVIDIA TensorRT-LLM、および vLLM などのオープンソースフレームワークと共にデプロイすることができます。
NVIDIA エンドポイントを使用した構築
開発者は、build.nvidia.com を通じて利用可能な GPU アクセラレーションされたエンドポイントを使用して、Step 3.7 Flash のプロトタイピングおよび評価を行うことができます。NVIDIA Nemotron Parse と Step 3.7 Flash を使用し、PDF を含む財務報告書、スライド資料、科学論文などのバウンディングボックスを持つ大規模で複雑なドキュメントから構造化された洞察を抽出して出力を整える、多段階のドキュメントインテリジェンスパイプラインについては、デモノートブック でお試しください。
*ビデオ 1. ドキュメントインテリジェンスパイプラインが如何使用可能なデータを抽出するかを確認し、JupyterLab ノートブックでワークフローに従ってください*
NVIDIA NIM を用いた本番環境対応デプロイ
NVIDIA NIM を利用すれば、Step 3.7 Flash の開発から本番環境への移行を容易に行うことができます。最適化されたコンテナ化された推論マイクロサービスとして提供される NIM は、企業が必要とするパフォーマンスチューニング、標準化された API、そして柔軟なデプロイ機能をモデルにパッケージ化しています。オンプレミス、クラウド、あるいはハイブリッド環境のいずれでもダウンロードして実行可能です。NIM は、推論リクエストを NIM サーバーへ送信するための標準的な OpenAI 推論インターフェースを提供します。
- NVIDIA コンテナレジストリから NIM コンテナをダウンロードしてください(企業ライセンスが必要です)。
- OpenAI クライアントを使用してサーバーを開始します。
- エンドポイントに対してテキストまたは画像の入力を送信します。
from openai import OpenAI
client = OpenAI(
api_key="no-key-required"
)
completion = client.chat.completions.create(
model="stepfun/step-3.7-flash",
messages=[{"role":"user","content":"Explain particle physics?"}]
temperature=0.5,
top_p=1,
max_tokens=1024,
stream=True
)
for chunk in completion:
if chunk.choices[0].delta.content is not None:
print(chunk.choices[0].delta.content, end="")
NVIDIA NeMo Framework を用いた Day 0 ファインチューニング
Step 3.7 Flash は、NVIDIA NeMo framework のオープンソースライブラリを使用して、ドメイン固有データでカスタマイズ可能です。NVIDIA NeMo Automodel ライブラリは、ネイティブの PyTorch n-D 並列処理(n-D parallelisms)と最適化されたパフォーマンスを組み合わせ、チェックポイント変換を行わずに Hugging Face のモデルチェックポイントから直接 Day 0 ファインチューニングをサポートしています。Step 3.7 向けの Automodel ファインチューニングレシピ は、Hopper GPU で秒間 600 トークンの速度で、教師ありファインチューニング(SFT)やメモリ効率の高い LoRA などの手法をサポートしています。
大規模な高度なトレーニングには、チームは NeMo Megatron-Bridge ファインチューニング レシピ も利用でき、これにより追加のパフォーマンス最適化が提供されます。
NVIDIA Blackwell 上のデータセンター展開から、NVIDIA DGX Station を用いたデスクサイド環境、管理された NIM マイクロサービス、そして Day 0 ファインチューニングワークフローに至るまで、NVIDIA は開発および展開の異なる段階全体にわたって Step 3.7 Flash を統合するための幅広いオプションを提供しています。748 GB の整合性メモリを備えた DGX Station は、フル 256k コンテキスト長に対応する余裕と、より高速なローカル開発者の反復処理を実現するために、Step 3.7 Flash を実行するのに理想的です。
NVIDIA はオープンソースエコシステムへの積極的な貢献者であり、オープンソースライセンスの下で数百の プロジェクト を公開しています。NVIDIA は、AI の透明性を促進し、ユーザーが AI の安全性と回復力に関する取り組みを共有できるようにする Step 3.7 Flash などのオープンモデルにコミットしています。
始めるには、Hugging Face で Step 3.7 Flash を確認するか、build.nvidia.com でご自身のデータでテストを行うか、vLLM Playbook を使用してローカルの DGX Station 上で実行してください。
著者について
原文を表示
AI applications are moving beyond text generation to multimodal systems that can perceive, search, and reason across images, documents, video, and language in real time—turning fragmented information into actionable insights.
Step 3.7 Flash, the latest from StepFun, brings these capabilities to production and enterprise-scale, available on NVIDIA-accelerated infrastructure. It is a 198B-parameter Mixture-of-Experts vision-language model, with approximately 11B activated parameters per forward pass, optimized for agentic workflows that combine perception, search, and multi-step reasoning at production scale.
With native image and video input, three configurable reasoning levels—low, medium, and high—and a 256k context window, it is designed for enterprise use cases such as financial analysis, concurrent coding agents, and other high-throughput multimodal use cases. Developers can use StepFun’s NVFP4-quantized checkpoint available through Hugging Face for boosted inference due to reduced memory bandwidth and storage requirements.
| Model | Step 3.7 Flash |
|---|---|
| Total parameters | 198B |
| Visual encoder parameters | 1.8B |
| Active parameters | 11B |
| Context length | 256K |
| Experts | 288 (8 active) |
*Table 1. Overview of the key Step 3.7 Flash specs, such as parameter counts, context length, and MoE configuration*

Step 3.7 Flash can be deployed with open source frameworks such as SGLang, NVIDIA TensorRT-LLM, and vLLM to utilize kernels optimized for NVIDIA hardware.
Build with NVIDIA endpoints
Developers can use GPU-accelerated endpoints available through build.nvidia.com for prototyping and evaluating Step 3.7 Flash. Test this out in the demo notebook, which uses Step 3.7 Flash and NVIDIA Nemotron Parse. The multi-step document intelligence pipeline extracts structured insights from large, complex documents with bounding boxes like financial reports, slide decks, and scientific papers, including PDFs, and organizes the output.
*Video 1. See how document intelligence pipelines extract usable data, then follow the workflow in a JupyterLab notebook*
Production-ready deployment with NVIDIA NIM
NVIDIA NIM makes it easy to take Step 3.7 Flash from development into production. Available as optimized, containerized inference microservices, NIM packages the model with the performance tuning, standardized APIs, and deployment flexibility enterprises need. Download and run it on-premises, in the cloud, or across hybrid environments. NIM provides a standard OpenAI inference for sending inference requests to the NIM server.
- Download the NIM container from the NVIDIA container registry (enterprise license required).
- Start a server with the OpenAI client.
- Send either text or image input to the endpoint.
from openai import OpenAI
client = OpenAI(
api_key="no-key-required"
)
completion = client.chat.completions.create(
model="stepfun/step-3.7-flash",
messages=[{"role":"user","content":"Explain particle physics?"}]
temperature=0.5,
top_p=1,
max_tokens=1024,
stream=True
)
for chunk in completion:
if chunk.choices[0].delta.content is not None:
print(chunk.choices[0].delta.content, end="")
Day 0 fine-tuning with NVIDIA NeMo Framework
Step 3.7 Flash can be customized with domain-specific data using open libraries from the NVIDIA NeMo framework. NVIDIA NeMo Automodel library combines native PyTorch n-D parallelisms with optimized performance and supports Day 0 fine-tuning directly from Hugging Face model checkpoints without checkpoint conversion. The Automodel fine-tuning recipe for Step 3.7 supports techniques such as supervised fine-tuning (SFT) and memory-efficient LoRA at 600 tokens/sec on Hopper GPUs.
For advanced large-scale training, teams can also use the NeMo Megatron-Bridge fine-tuning recipe, which provides additional performance optimizations.
From data center deployments on NVIDIA Blackwell to deskside with NVIDIA DGX Station to managed NIM microservices and Day 0 fine-tuning workflows, NVIDIA provides a range of options for integrating Step 3.7 Flash across different stages of development and deployment. With 748 GB of coherent memory, DGX Station is ideal for running Step 3.7 Flash with increased headroom for the full 256k context length, and faster local developer iteration.
NVIDIA is an active contributor to the open-source ecosystem and has released several hundred projects under open source licenses. NVIDIA is committed to open models such as Step 3.7 Flash that promote AI transparency and enable users to share their AI safety and resilience work.
To get started, check out Step 3.7 Flash on Hugging Face, test it with your own data on build.nvidia.com, or locally on DGX Station using the vLLM Playbook.
About the Authors
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み