evidently VS alibi-detect

Compare evidently vs alibi-detect and see what are their differences.

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
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
evidently alibi-detect
10 9
4,664 2,085
2.3% 1.6%
9.5 7.6
3 days ago 11 days ago
Jupyter Notebook Python
Apache License 2.0 GNU General Public License v3.0 or later
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.

evidently

Posts with mentions or reviews of evidently. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-11.
  • [P] Free open-source ML observability course: starts October 16 ๐Ÿš€
    1 project | /r/MachineLearning | 15 Oct 2023
    Hi everyone, Iโ€™m one of the creators of Evidently, an open-source (Apache 2.0) tool for production ML monitoring. Weโ€™ve just launched a free open course on ML observability that I wanted to share with the community.
  • Free Open-source ML observability course
    1 project | news.ycombinator.com | 4 Oct 2023
    Evidently itself is an open-source ML monitoring tool with 3m+ downloads so it's fairly popular https://github.com/evidentlyai/evidently. The course will show it but also other OSS tools like Mlflow and Grafana.

    Disclaimer: I am one of the people working on Evidently.

  • Batch ML deployment and monitoring blueprint using open-source
    2 projects | /r/mlops | 11 May 2023
    Repo:https://github.com/evidentlyai/evidently/tree/main/examples/integrations/postgres_grafana_batch_monitoring
  • Looking for recommendations to monitor / detect data drifts over time
    3 projects | /r/datascience | 15 Apr 2023
  • evidently: Evaluate and monitor ML models from validation to production
    1 project | /r/coolgithubprojects | 8 Dec 2022
  • State of the Art data drift libraries on Python?
    3 projects | /r/mlops | 24 May 2022
    Thank you for your answer. I'm trying it today and the the other libraries mentioned + https://github.com/evidentlyai/evidently
  • Package for drift detection
    2 projects | /r/mlops | 6 Apr 2022
    evidently: https://github.com/evidentlyai/evidently
  • The hand-picked selection of the best Python libraries released in 2021
    12 projects | /r/Python | 21 Dec 2021
    Evidently.
  • [D] 5 considerations for Deploying Machine Learning Models in Production โ€“ what did I miss?
    3 projects | /r/MachineLearning | 21 Nov 2021
    Consideration Number #5: For model observability look to Evidently.ai, Arize.ai, Arthur.ai, Fiddler.ai, Valohai.com, or whylabs.ai.
  • Launch HN: Evidently AI (YC S21) โ€“ Track and Debug ML Models in Production
    1 project | news.ycombinator.com | 7 Jul 2021
    Hi HN, we are Evidently AI http://evidentlyai.com. We're building monitoring for machine learning models in production. The tool is open source and available on GitHub: https://github.com/evidentlyai/evidently. You can use it locally in a Jupyter notebook or in a Bash shell. Thereโ€™s a video showing how it works in Jupyter here: https://www.youtube.com/watch?v=NPtTKYxm524.

    Machine learning models can stop working as expected, often for non-obvious reasons. If this happens to a marketing personalization model, you might spam your customers by mistake. If this happens to credit scoring models, you might face legal and reputational risks. And so on. To catch issues with the model, it is not enough to just look at service metrics like latency. You have to track data quality, data drift (did the inputs change too much?), underperforming segments (does the model fail only for users in a certain region?), model metrics (accuracy, ROC AUC, mean error, etc.), etc.

    Emeli and I have been friends for many years. We first met when we both worked at Yandex (the company behind CatBoost and ClickHouse). We worked on creating ML systems for large enterprises. We then co-founded a startup focused on ML for manufacturing. Overall we've worked on more than 50 real-world ML projects, from e-commerce recommendations to steel production optimization. We faced the monitoring problem on our own when we put models in production and had to create and build custom dashboards. Emeli is also an ML instructor on Coursera (co-author of the most popular ML course in Russian) and a number of offline courses. She knows first-hand how many data scientists try to repeatedly implement the same things over and over. There is no reason why everyone should have to build their own version of something like drift detection.

    We spent a couple of months talking to ML teams from different industries. We learned that there are no good, standard solutions for model monitoring. Some quoted us horror stories about broken models left unnoticed which led to $100K+ in losses. Others showed us home-grown dashboards and complained they are hard to maintain. Some said they simply have a recurring task to look at the logs once per month, and often catch the issues late. It is surprising how often models are not monitored until the first failure. We spoke to many teams who said that only after the first breakdown they started to think about monitoring. Some never do, and failures go undetected.

    If you want to calculate a couple of performance metrics on top of your data, it is easy to do ad hoc. But if you want to have stable visibility into different models, you need to consider edge cases, choose the right statistical tests and implement them, design visuals, define thresholds for alerts etc. That is a harder problem that combines statistics and engineering. Beyond that, monitoring often involves sharing the results with different teams: from domain experts to developers. In practice, data scientists often end up sharing screenshots of their plots and sending files here and there. Building a maintainable software system that supports these workflows is a project in itself, and machine learning teams usually do not have time or resources for it.

    Since there is no standard open-source solution, we decided to build one. We want to automate as much as possible to help people focus on the modeling work that matters, not boilerplate code.

    Our main tool is an open-source Python library that generates interactive reports on ML model performance. To get it, you need to provide the model logs (input features, prediction, and ground truth if available) and reference data (usually from training). Then you choose the report type and we generate a set of dashboards. We have pre-built several reports to detect things like data drift, prediction drift, visualize performance metrics, and help understand where the model makes errors. We can display these in a Jupyter notebook or HTML. We can also generate a JSON profile instead of a report. You can then integrate this output with any external tool (like Grafana) and build a workflow you want to trigger retraining or alerts.

    Under the hood, we perform the needed calculations (e.g. Kolmogorov Smirnov or Chi-Squared test to detect drift) and generate multiple interactive tables and plots (using Plotly on the backend). Right now it works with tabular data only. In the future, we plan to add more data types, reports and make it easier to customize metrics. Our goal is to make it dead easy to understand all aspects of model performance and monitor them.

    We differ from other approaches in a couple of ways. There are end-to-end ML platforms on the market that include monitoring features. These work for teams who are ready to trade flexibility in order to have an all-in-one tool. But most teams we spoke to have custom needs and prefer to build their own platform from open components. We want to create a tool that does one thing well and is easy to integrate with whatever stack you use. There are also some proprietary ML monitoring solutions on the market, but we believe that tools like these should be open, transparent, and available for self-hosting. That is why we are building it as open source.

    We launched under Apache 2.0 license so that everyone can use the tool. For now, our focus is to get adoption for the open-source project. We donโ€™t plan to charge individual users or small teams. We believe that the open-source project should remain open and be highly valuable. Later on, we plan to make money by providing a hosted cloud version for teams that do not want to run it themselves. We're also considering an open-core business model where we charge for features that large companies care about like single sign-on, security and audits.

    If you work in tech companies, you might think that many ML infra problems are already solved. But in more traditional industries like manufacturing, retail, finance, etc., ML is just hitting adoption. Their ML needs and environment are often very different due to legacy IT systems, regulations, and types of use cases they work with. Now that many move from ML proof-of-concept projects to production, they will need the tools to help run the models reliably.

    We are super excited to share this early release, and weโ€™d love if you could give it a try: https://github.com/evidentlyai/evidently. If you run models in production - let us know how you monitor them and if anything is missing. If you need some help to test the tool - happy to chat! We want to build this open-source project together with the community, and it is very important for us to hear your thoughts and feedback.

alibi-detect

Posts with mentions or reviews of alibi-detect. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-13.
  • Exploring Open-Source Alternatives to Landing AI for Robust MLOps
    18 projects | dev.to | 13 Dec 2023
    Numerous tools exist for detecting anomalies in time series data, but Alibi Detect stood out to me, particularly for its capabilities and its compatibility with both TensorFlow and PyTorch backends.
  • Looking for recommendations to monitor / detect data drifts over time
    3 projects | /r/datascience | 15 Apr 2023
  • [D] Distributions to represent an Image Dataset
    1 project | /r/MachineLearning | 24 Feb 2023
    That is, to see whether a test image belongs in the distribution of the training images and to provide a routine for special cases. After a bit of reading Ive found that this is related to the field of drift detection in which I tried out alibi-detect . Whereby the training images are trained by an autoencoder and any subsequent drift will be flagged by the AE.
  • [D] Which statistical test would you use to detect drift in a dataset of images?
    1 project | /r/MachineLearning | 24 Aug 2022
    Wasserstein distance is not very suitable for drift detection on most problems given that the sample complexity (and estimation error) scales with O(n^(-1/d)) with n the number of instances (100k-10m in your case) and d the feature dimension (192 in your case). More interesting will be to use for instance a detector based on the maximum mean discrepancy (MMD) with estimation error of O(n^(-1/2)). Notice the absence of the feature dimension here. You can find scalable implementations in Alibi Detect (disclosure: I am a contributor): MMD docs, image example. We just added the KeOps backend for the MMD detector to scale and speed up the drift detector further, so if you install from master, you can leverage this backend and easily scale the detector to 1mn instances on e.g. 1 RTX2080Ti GPU. Check this example for more info.
  • Ask HN: Who is hiring? (January 2022)
    28 projects | news.ycombinator.com | 3 Jan 2022
    Seldon | Multiple positions | London/Cambridge UK | Onsite/Remote | Full time | seldon.io

    At Seldon we are building industry leading solutions for deploying, monitoring, and explaining machine learning models. We are an open-core company with several successful open source projects like:

    * https://github.com/SeldonIO/seldon-core

    * https://github.com/SeldonIO/mlserver

    * https://github.com/SeldonIO/alibi

    * https://github.com/SeldonIO/alibi-detect

    * https://github.com/SeldonIO/tempo

    We are hiring for a range of positions, including software engineers(go, k8s), ml engineers (python, go), frontend engineers (js), UX designer, and product managers. All open positions can be found at https://www.seldon.io/careers/

  • What Machine Learning model monitoring tools can you recommend?
    1 project | /r/mlops | 2 Dec 2021
  • Ask HN: Who is hiring? (December 2021)
    37 projects | news.ycombinator.com | 1 Dec 2021
  • [D] How do you deal with covariate shift and concept drift in production?
    2 projects | /r/MachineLearning | 28 Oct 2021
    I work in this area and also contribute to outlier/drift detection library https://github.com/SeldonIO/alibi-detect. To tackle this type of problem, I would strongly encourage following a more principled, fundamentally (statistically) sound approach. So for instance measuring metrics such as the KL-divergence (or many other f-divergences) will not be that informative since it has a lot of undesirable properties for the problem at hand (in order to be informative requires already overlapping distributions P and Q, it is asymmetric, not a real distance metric, will not scale well with data dimensionality etc). So you should probably look at Integral Probability Metrics (IPMs) such as the Maximum Mean Discrepancy (MMD) instead which have much nicer behaviour to monitor drift. I highly recommend the Interpretable Comparison of Distributions and Models NeurIPS workshop talks for more in-depth background.
  • [D] Is this a reasonable assumption in machine learning?
    1 project | /r/MachineLearning | 5 Jul 2021
    All of the above functionality and more can be easily used under a simple API in https://github.com/SeldonIO/alibi-detect.

What are some alternatives?

When comparing evidently and alibi-detect you can also consider the following projects:

great_expectations - Always know what to expect from your data.

pytorch-widedeep - A flexible package for multimodal-deep-learning to combine tabular data with text and images using Wide and Deep models in Pytorch

seldon-core - An MLOps framework to package, deploy, monitor and manage thousands of production machine learning models

cleanlab - The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.

MLflow - Open source platform for the machine learning lifecycle

pyod - A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)

whylogs - An open-source data logging library for machine learning models and data pipelines. ๐Ÿ“š Provides visibility into data quality & model performance over time. ๐Ÿ›ก๏ธ Supports privacy-preserving data collection, ensuring safety & robustness. ๐Ÿ“ˆ

ydata-profiling - 1 Line of code data quality profiling & exploratory data analysis for Pandas and Spark DataFrames.

river - ๐ŸŒŠ Online machine learning in Python

dvc - ๐Ÿฆ‰ ML Experiments and Data Management with Git

Anomaly_Detection_Tuto - Anomaly detection tutorial on univariate time series with an auto-encoder