Metadata-Version: 2.0
Name: azureml-responsibleai
Version: 1.41.0
Summary: AzureML Responsible AI package
Home-page: https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py
Author: Microsoft Corp
Author-email: amlraidev@microsoft.com
License: Proprietary https://aka.ms/azureml-preview-sdk-license 
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6,<3.9
Description-Content-Type: text/x-rst
Requires-Dist: azureml-core (~=1.41.0)
Requires-Dist: azureml-dataset-runtime (~=1.41.0)
Requires-Dist: azureml-telemetry (~=1.41.0)
Requires-Dist: azureml-interpret (~=1.41.0)
Requires-Dist: fairlearn (>=0.6.2)
Requires-Dist: joblib
Requires-Dist: jsonschema
Requires-Dist: responsibleai (==0.17.0)

Microsoft Azure Machine Learning Responsible AI for Python
==========================================================

This package has been tested with Python 3.6 and 3.7.
=====================================================


The azureml-responsibleai package provides classes for Responsible AI in Azure Machine Learning and includes the following:

- Model explanations including aggregate and individual feature importance.
- Causal inference, estimates the causal effect each feature has on the outcome and recommends a policy for when to apply treatments in order to optimize the outcome.
- Counterfactual analysis, generates diverse counterfactual examples of existing datapoints to achieve a desired model output.
- Error analysis, a more robust analysis of a model's performance by identifying which cohorts of your data have disproportionately higher error rate.  For example, a cohort of your data specifying gender or race.

This package is experimental and may be subject to future change or removal.

*****************
Setup
*****************

Follow these `instructions <https://docs.microsoft.com/azure/machine-learning/how-to-configure-environment#local>`_ to install the Azure ML SDK on your local machine, create an Azure ML workspace, and set up your notebook environment, which is required for the next step.
Once you have set up your environment, install the AzureML Responsible AI package:

.. code-block:: python

   pip install azureml-responsibleai




