mmschlk / shapiq

Shapley Interactions for Machine Learning
https://shapiq.readthedocs.io
MIT License
60 stars 6 forks source link

allow for importing benchmark functions directly from modules / package #169

Open hbaniecki opened 3 weeks ago

hbaniecki commented 3 weeks ago

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.