onnx VS dvc

Compare onnx vs dvc and see what are their differences.

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
onnx dvc
41 112
17,077 13,311
1.3% 1.5%
9.4 9.6
9 days ago 4 days ago
Python Python
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

onnx

Posts with mentions or reviews of onnx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-06-13.
  • Using Google Magika to build an AI-powered file type detector
    4 projects | dev.to | 13 Jun 2024
    To perform fast inference at runtime, Magika uses the cross-platform Open Neural Network Exchange (ONNX) runtime. ONNX provides a method to optimize, accelerate, and deploy models built using any of the popular frameworks consistently, even across different hardware platforms or instruction set architectures.
  • Nvidia and Salesforce double down on AI startup Cohere in $450M round
    1 project | news.ycombinator.com | 4 Jun 2024
    Right; but you can't cross-compile everything. This is really common in AI libraries, especially multi-target projects like ONNX: https://onnx.ai/

    The math probably adds up in Google's favor with the TPUs, even if they end up being less efficient and slower per-unit than Nvidia hardware. They don't need to pay for the margins, and they can run them 24/7 for their intended purpose. The previous-generation TPUs can't be reused or resold for other purposes though, and if/when AI blows over as a trend you probably can't easily start mining crypto or doing HPC calculations like an Nvidia cluster would.

  • HuggingFace hacked – Space secrets leak disclosure
    1 project | news.ycombinator.com | 1 Jun 2024
    > I had assumed model files were big matrices of numbers and some metadata perhaps

    ONNX [1] is more or less this, but the challenge you immediately run into is models with custom layers/operators with their own inference logic - you either have to implement those operators in terms of the supported ops (not necessarily practical or viable) or provide the implementation of the operator to the runtime, putting you back at square one.

    [1] https://onnx.ai/

  • Onyx, a new programming language powered by WebAssembly
    4 projects | news.ycombinator.com | 1 Dec 2023
  • From Lab to Live: Implementing Open-Source AI Models for Real-Time Unsupervised Anomaly Detection in Images
    4 projects | dev.to | 15 Oct 2023
    Once your model has been trained and validated using Anomalib, the next step is to prepare it for real-time implementation. This is where ONNX (Open Neural Network Exchange) or OpenVINO (Open Visual Inference and Neural network Optimization) comes into play.
  • Object detection with ONNX, Pipeless and a YOLO model
    2 projects | dev.to | 20 Sep 2023
    ONNX is an open format from the Linux Foundation to represent machine learning models. It is becoming extensively adopted by the Machine Learning community and is compatible with most of the machine learning frameworks like PyTorch, TensorFlow, etc. Converting a model between any of those formats and ONNX is really simple and can be done in most cases with a single command.
  • 38TB of data accidentally exposed by Microsoft AI researchers
    3 projects | news.ycombinator.com | 18 Sep 2023
    ONNX[0], model-as-protosbufs, continuing to gain adoption will hopefully solve this issue.

    [0] https://github.com/onnx/onnx

  • Reddit’s LLM text model for Ads Safety
    1 project | /r/RedditEng | 13 Sep 2023
    Running inference for large models on CPU is not a new problem and fortunately there has been great development in many different optimization frameworks for speeding up matrix and tensor computations on CPU. We explored multiple optimization frameworks and methods to improve latency, namely TorchScript, BetterTransformer and ONNX.
  • Operationalize TensorFlow Models With ML.NET
    5 projects | dev.to | 17 Aug 2023
    ONNX is a format for representing machine learning models in a portable way. Additionally, ONNX models can be easily optimized and thus become smaller and faster.
  • Onnx Runtime: “Cross-Platform Accelerated Machine Learning”
    5 projects | news.ycombinator.com | 25 Jul 2023
    I would say onnx.ai [0] provides more information about ONNX for those who aren’t working with ML/DL.

    [0] https://onnx.ai

dvc

Posts with mentions or reviews of dvc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-06-06.
  • 10 Open Source Tools for Building MLOps Pipelines
    9 projects | dev.to | 6 Jun 2024
    As Git helps you with code versions and the ability to roll back to previous versions for code repositories, DVC has built-in support for tracking your data and model. This helps machine learning teams reproduce the experiments run by your fellows and facilitates collaboration. DVC is based on the principles of Git and is easy to learn since the commands are similar to those of Git. Other benefits of using DVC include:
  • A step-by-step guide to building an MLOps pipeline
    7 projects | dev.to | 4 Jun 2024
    The meta-data and model artifacts from experiment tracking can contain large amounts of data, such as the training model files, data files, metrics and logs, visualizations, configuration files, checkpoints, etc. In cases where the experiment tool doesn't support data storage, an alternative option is to track the training and validation data versions per experiment. They use remote data storage systems such as S3 buckets, MINIO, Google Cloud Storage, etc., or data versioning tools like data version control (DVC) or Git LFS (Large File Storage) to version and persist the data. These options facilitate collaboration but have artifact-model traceability, storage costs, and data privacy implications.
  • AI Strategy Guide: How to Scale AI Across Your Business
    4 projects | dev.to | 11 May 2024
    Level 1 of MLOps is when you've put each lifecycle stage and their intefaces in an automated pipeline. The pipeline could be a python or bash script, or it could be a directed acyclic graph run by some orchestration framework like Airflow, dagster or one of the cloud-provider offerings. AI- or data-specific platforms like MLflow, ClearML and dvc also feature pipeline capabilities.
  • My Favorite DevTools to Build AI/ML Applications!
    9 projects | dev.to | 23 Apr 2024
    Collaboration and version control are crucial in AI/ML development projects due to the iterative nature of model development and the need for reproducibility. GitHub is the leading platform for source code management, allowing teams to collaborate on code, track issues, and manage project milestones. DVC (Data Version Control) complements Git by handling large data files, data sets, and machine learning models that Git can't manage effectively, enabling version control for the data and model files used in AI projects.
  • Why bad scientific code beats code following "best practices"
    3 projects | news.ycombinator.com | 6 Jan 2024
    What you’re describing sounds like DVC (at a higher-ish—80%-solution level).

    https://dvc.org/

    See pachyderm too.

  • First 15 Open Source Advent projects
    16 projects | dev.to | 15 Dec 2023
    10. DVC by Iterative | Github | tutorial
  • Exploring Open-Source Alternatives to Landing AI for Robust MLOps
    18 projects | dev.to | 13 Dec 2023
    Platforms such as MLflow monitor the development stages of machine learning models. In parallel, Data Version Control (DVC) brings version control system-like functions to the realm of data sets and models.
  • ML Experiments Management with Git
    4 projects | news.ycombinator.com | 2 Nov 2023
  • Git Version Controlled Datasets in S3
    1 project | news.ycombinator.com | 25 Oct 2023
    I was using DVC (https://dvc.org/) for some time to help solve this but it was getting hard to manage the storage connections and I would run into cache issues a lot, but this solves it using git-lfs itself.
  • Ask HN: How do your ML teams version datasets and models?
    3 projects | news.ycombinator.com | 28 Sep 2023

What are some alternatives?

When comparing onnx and dvc you can also consider the following projects:

onnxruntime - ONNX Runtime: cross-platform, high performance ML inferencing and training accelerator

MLflow - Open source platform for the machine learning lifecycle

stable-diffusion-webui - Stable Diffusion web UI

lakeFS - lakeFS - Data version control for your data lake | Git for data

stable-diffusion-webui - Stable Diffusion web UI [Moved to: https://github.com/Sygil-Dev/sygil-webui]

Activeloop Hub - Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai [Moved to: https://github.com/activeloopai/deeplake]

sentence-transformers - Multilingual Sentence & Image Embeddings with BERT

delta - An open-source storage framework that enables building a Lakehouse architecture with compute engines including Spark, PrestoDB, Flink, Trino, and Hive and APIs

stable-diffusion - A latent text-to-image diffusion model

ploomber - The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️

stable-diffusion-webui - Stable Diffusion web UI [Moved to: https://github.com/sd-webui/stable-diffusion-webui]

aim - Aim 💫 — An easy-to-use & supercharged open-source experiment tracker.

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured