diff --git a/README.md b/README.md index e6093ede..28fd5997 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SCOPE-RL: A Python library for offline reinforcement learning, off-policy evaluation, and selection -
+Policy Value Estimated by OPE Estimators @@ -342,7 +342,7 @@ cvar_dict = cd_ope.estimate_conditional_value_at_risk(input_dict, alphas=0.3) # estimate and visualize the cumulative distribution function of the policy performance cd_ope.visualize_cumulative_distribution_function(input_dict, n_cols=4) ``` -
+Cumulative Distribution Function Estimated by OPE Estimators @@ -378,7 +378,7 @@ ops.visualize_topk_policy_value_selected_by_standard_ope( safety_criteria=1.0, ) ``` -
+Comparison of the Top-k Statistics of 10% Lower Quartile of Policy Value @@ -401,7 +401,7 @@ ops.visualize_cvar_for_validation( share_axes=True, ) ``` -
+Validation of Estimated and Ground-truth Variance of Policy Value diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 00000000..aa666648 Binary files /dev/null and b/images/logo.png differ diff --git a/images/ops_topk_lower_quartile.png b/images/ops_topk_lower_quartile.png new file mode 100644 index 00000000..e0ec1043 Binary files /dev/null and b/images/ops_topk_lower_quartile.png differ diff --git a/setup.py b/setup.py index 7066bfdf..adfaa829 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def _requirements_from_text(filename): install_requires=_requirements_from_text("requirements.txt"), license="Apache License 2.0", packages=find_packages( - exclude=[".github", "docs", "examples", "images", "tests"], + exclude=[".github", "docs", "examples", "tests"], ), classifiers=[ "Intended Audience :: Science/Research",