Skip to content

Commit

Permalink
Fix accidental ensemble change, fix AlgorithmTypes bug
Browse files Browse the repository at this point in the history
+ In a previous commit, I accidentally changed the selected ensemble; here, I change it back
+ AlgorithmTypes was misnumbered -- both PLACEHOLDER_2 and PLACEHOLDER_3
  had values of 3 -- here, I fix that
  • Loading branch information
GabrielKS committed Jul 23, 2021
1 parent 64cc9c2 commit 2dadf8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# ensemble specifies which algorithm in eacile to run.
# This makes it easy to test various ways of combining various algorithms.
ensemble = eacile.ensemble_first_prediction
ensemble = eacile.ensemble_real_and_placeholder


# Does all the work necessary for a given user
Expand Down
6 changes: 3 additions & 3 deletions emission/core/wrapper/labelprediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ class AlgorithmTypes(enum.Enum):
PLACEHOLDER_0 = 1
PLACEHOLDER_1 = 2
PLACEHOLDER_2 = 3
PLACEHOLDER_3 = 3
TWO_STAGE_BIN_CLUSTER = 4
PLACEHOLDER_PREDICTOR_DEMO = 5
PLACEHOLDER_3 = 4
TWO_STAGE_BIN_CLUSTER = 5
PLACEHOLDER_PREDICTOR_DEMO = 6


class Labelprediction(ecwb.WrapperBase):
Expand Down

0 comments on commit 2dadf8d

Please sign in to comment.