一键导入
ix-nn
Neural networks — trainable transformers with GPU attention, dense layers, backprop, loss functions, positional encodings
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Neural networks — trainable transformers with GPU attention, dense layers, backprop, loss functions, positional encodings
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test model robustness with adversarial attacks and defenses
Multi-armed bandit simulation — epsilon-greedy, UCB1, Thompson sampling
Benchmark and compare ix algorithm performance
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Category theory primitives — monad laws verification, free-forgetful adjunction
Chaos theory analysis — Lyapunov exponents, bifurcation, attractors, fractals
| name | ix-nn |
| description | Neural networks — trainable transformers with GPU attention, dense layers, backprop, loss functions, positional encodings |
| disable-model-invocation | true |
Trainable neural network components including end-to-end transformer models with GPU-accelerated attention.
When the user needs neural network operations — from simple dense layers to full transformer training. For high-level ML pipelines, use /ix-ml-builder instead.
Classifier traitRegressor traituse ix_nn::classifier::{TransformerClassifier, TransformerConfig};
use ix_supervised::traits::Classifier;
let config = TransformerConfig {
d_model: 64, n_heads: 4, n_layers: 2, d_ff: 128,
seq_len: None, epochs: 50, learning_rate: 0.001, seed: 42,
};
let mut model = TransformerClassifier::new(config);
model.fit(&x_train, &y_train);
let predictions = model.predict(&x_test);
ix_nn_forward — Dense forward, loss functions, sinusoidal encodingix_ml_pipeline with "model": "transformer" — Full transformer training pipeline