Skip to content

Commit

Permalink
Remove some linter warnings that didn't make sense
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-wisiol committed Feb 19, 2019
1 parent 6e23099 commit 2a3e318
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Expand Up @@ -43,4 +43,4 @@ max-line-length=120
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
# E1111 is buggy for certain numpy functions, see github.com/PyCQA/pylint/issues/2435
disable=E1111
disable=E1111,C0103,C0411,W0221
Expand Up @@ -34,7 +34,8 @@
for training_set_size in training_set_sizes:
for i in range(samples_per_point):
for minibatch_size in [None] + minibatch_sizes:
if minibatch_size and minibatch_size >= training_set_size: break
if minibatch_size and minibatch_size >= training_set_size:
break
experiments.append(
ExperimentLogisticRegression(
log_name=log,
Expand All @@ -60,13 +61,10 @@
group_labels=group_labels,
)


def update_plot():
result_plot.plot()


e.update_callback = update_plot
e.run()

result_plot.plot()

0 comments on commit 2a3e318

Please sign in to comment.