원클릭으로
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