8000 fix: fix missing sampler_params attribute by nickt121 · Pull Request #28 · eli5-org/eli5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: fix missing sampler_params attribute #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eli5/lime/samplers.py
5BB0
Original file line number Diff line numberDiff line change
Expand Up @@ -135,6 +135,7 @@ def __init__(self,
self.random_state = random_state
self.rng_ = check_random_state(random_state)
self.token_pattern = token_pattern
self.sampler_params = sampler_params
self.samplers = list(map(self._create_sampler, sampler_params))
if weights is None:
self.weights = np.ones(len(self.samplers))
Expand Down
0