ワンクリックで
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