Export Hugging Face models to ONNX
Submit models for evaluation and view leaderboard
Browse and submit evaluations for CaselawQA benchmarks
View LLM Performance Leaderboard
Browse and evaluate ML tasks in MLIP Arena
Browse and submit LLM evaluations
Evaluate and submit AI model results for Frugal AI Challenge
Convert PyTorch models to waifu2x-ios format
Generate and view leaderboard for LLM evaluations
Persian Text Embedding Benchmark
Convert Hugging Face model repo to Safetensors
Evaluate model predictions with TruLens
Optimize and train foundation models using IBM's FMS
Export to ONNX is a tool designed to convert machine learning models from the Hugging Face ecosystem into the Open Neural Network Exchange (ONNX) format. ONNX is an open standard that allows models to be exported and used across different frameworks and platforms, enabling interoperability and deployment in various environments. This tool simplifies the process of transitioning models for inference or further development in frameworks that support ONNX.
• Cross-Framework Compatibility: Convert models from Hugging Face to ONNX format for use in frameworks like PyTorch, TensorFlow, or Microsoft Cognitive Toolkit (CNTK).
• Optimization for Inference: ONNX models are often optimized for inference, making them suitable for production environments.
• Simplified Export Process: Streamlined workflow for converting models with minimal effort.
• Scalability: Supports a wide range of model architectures, including popular transformers and other deep learning models.
transformers
and torch-onnx
.What models are supported for export?
• Most Hugging Face models, including popular transformer-based architectures, are supported for export to ONNX.
Why should I convert my model to ONNX?
• Converting to ONNX allows for better interoperability and optimization, making it easier to deploy models in production environments.
How do I handle complex or custom models?
• For complex or custom models, ensure all operations are supported in ONNX. You may need to modify the model or use additional tools to handle unsupported layers.