Data Science by ODS.ai 🦜
51K subscribers
363 photos
34 videos
7 files
1.52K links
First Telegram Data Science channel. Covering all technical and popular staff about anything related to Data Science: AI, Big Data, Machine Learning, Statistics, general Math and the applications of former. To reach editors contact: @haarrp
Download Telegram
A Guide for Making Black Box Models Explainable.

One of the biggest challenges is to make ML models interpretable (explainable to human, preferably, non-expert). It matters not only in terms of credit scoring, to exclude possibility of racism or any other bias or news promotion and display (Cambridge Analytica case), but even in terms of debug and further progress in model training.


Link: https://christophm.github.io/interpretable-ml-book/

#guide #interpretablelearning #IL
Forwarded from Archived GitHub
Testing Python Applications with Pytest.

Pytest is a testing framework and test runner for Python. In this guide we will have a look at the most useful and common configuration and usage, including several pytest plugins and external libraries. Although Python comes with a unittest module in the standard library and there are other Python test frameworks like nose2 or Ward, pytest remains my favourite. The beauty of using simple functions instead of class hierarchies, one simple assert instead of many different assert functions, built-in parametrized testing, a nice system of fixtures and the number of available plugins makes it a pleasure to use.

#guide #testing #python #pytest