numpy
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
DeepseekModel
キュレーション済みスキル
品質 優秀 · 90
v1.0.0
取得
https://deepseekmodel.com/api/download.php?id=microsoft-debugpy-claude-skills-numpy-skill-md&format=skill
ダウンロード .skill
標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name numpy description Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization. Skill: NumPy Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization. When to Use Apply this skill when doing numerical computing with NumPy — arrays, broadcasting, linear algebra, random sampling. Arrays Use explicit dtypes ( np.float64 , np.int32 ) when creating arrays. Prefer np.zeros , np.ones , np.empty , np.arange , np.linspace over list-based construction. Use structured arrays or separate arrays instead of object arrays. Vectorization Replace Python loops with vectorized NumPy operations wherever possible. Use broadcasting rules to operate on arrays of different shapes without explicit expansion. Use np.where() for conditional element-wise operations. Memory Use np.float32 instead of np.float64 when precision is not critical to halve memory. Use views ( reshape , slicing) instead of copies when data doesn't need mutation. Use np.memmap for arrays too large to fit in RAM. Random Use np.random.default_rng(seed) (new Generator API) instead of np.random.seed() . Always seed random generators in tests for reproducibility. Pitfalls Don't compare floats with == ; use np.allclose() or np.isclose() . Beware of silent integer overflow in integer arrays. Avoid np.matrix — it's deprecated; use 2D np.ndarray .
このスキルを起動するキーワード。クリックでコピーできます。
このスキルにはトリガーワードがありません。
ダウンロードした .skill に含まれるフィールド。
| フィールド | 説明 |
|---|---|
| format | フォーマット識別子(skill/v1) |
| skill_id | スキル固有 ID |
| name | スキル名 |
| version | バージョン |
| description | 説明 |
| category | カテゴリ(配列) |
| trigger_words | トリガーワード |
| tags | タグ |
| source | ソース |
| source_url | ソース URL(本ページ) |
| exported_at | エクスポート日時(ダウンロード毎) |
| system_prompt | システムプロンプト本文 |
| model_config | モデル設定:provider / model / temperature / max_tokens / top_p |
| examples | サンプル |
| install_guide | 各プラットフォームの導入説明(Coze / Dify / Claude / カスタム) |