Bit-TTT Engine への貢献に興味を持っていただきありがとうございます!
# リポジトリをクローン
git clone https://github.com/imonoonoko/Bit-TTT-Engine.git
cd Bit-TTT-Engine
# ビルド
cargo build
# テスト実行
cargo test --workspace
# 問題チェック
cargo clippy --workspace
cargo fmt を実行Conventional Commits に従う:
feat(core): 新しいレイヤータイプを追加
fix(train): チェックポイント読込の問題を解決
docs: README を更新
refactor(model): 大きなファイルをモジュールに分割
feat/my-feature)cargo test と cargo clippy を実行crates/
├── rust_engine/ # コアライブラリ (cortex_rust)
│ ├── layers/ # ニューラルネットワーク層
│ ├── model/ # モデルアーキテクチャ
│ └── python.rs # Python バインディング
│
└── bit_llama/ # CLI アプリケーション
├── train/ # 学習パイプライン
├── gui/ # Tauri GUI
└── cli.rs # CLI エントリーポイント
貢献ありがとうございます!