mirror of
https://github.com/tracel-ai/burn.git
synced 2026-05-31 19:49:48 +09:00
* Move ONNX import into burn-onnx crate * Update publish * Update burn-import -> burn-onnx * Fix clippy warnings that are no longer allowed * Allow unused * Update contributor book references to burn-onnx Update all burn-import path references in the ONNX development guide to point to the new burn-onnx crate location. * Remove ONNX integration steps from burn op guide Deleted the section detailing how to add a new operation to burn-onnx, including ONNX IR and code generation mapping steps. This streamlines the guide and removes outdated or redundant ONNX-specific instructions. * Update onnx-ir references from burn-import to burn-onnx Update documentation and code comments to reference the new burn-onnx crate instead of burn-import. * Update ONNX test producer name to burn-onnx-test Update producer_name metadata in Python test scripts from "burn-import-test" to "burn-onnx-test" for consistency. * Undo ONNX file changes
26 lines
313 B
Plaintext
26 lines
313 B
Plaintext
Cargo.lock
|
|
|
|
# Ignore model artifacts and temporary resources in all subdirectories
|
|
*/artifacts/
|
|
|
|
# Ignore downloaded model files
|
|
**/*.onnx
|
|
**/*.pt
|
|
**/*.pth
|
|
**/*.ckpt
|
|
**/*.safetensors
|
|
**/*.pb
|
|
**/*.h5
|
|
|
|
# Python cache
|
|
**/__pycache__/
|
|
**/*.pyc
|
|
**/*.pyo
|
|
**/*.pyd
|
|
**/.Python
|
|
|
|
# UV/pip
|
|
**/.venv/
|
|
**/venv/
|
|
**/*.egg-info/
|