mmschlk / shapiq

Shapley Interactions for Machine Learning

Home Page:https://shapiq.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

allow for importing benchmark functions directly from modules / package

hbaniecki opened this issue · comments

i.e. instead of

from shapiq.games.benchmark.benchmark_config import (
    load_games_from_configuration, 
    print_benchmark_configurations
)
from shapiq.games.benchmark.plot import plot_approximation_quality

allow for

import shapiq
shapiq.games.benchmark.load_games_from_configuration()
shapiq.games.benchmark.print_benchmark_configurations()
shapiq.games.benchmark.plot_approximation_quality()

etc.