You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# produce warnings if hasher_features is set but feature_hasher# is missing or set to False.ifconfig.has_option("Input", "hasher_features"):
ifnotconfig.has_option("Input", "hasher_features"):
logger.warning("Ignoring hasher_features since feature_hasher"+" is missing from the config file.")
else:
feature_hasher=config.getboolean("Input", "feature_hasher")
ifnotfeature_hasher:
logger.warning("Ignoring hasher_features since feature_hasher"+" is set to False.")
In
experiments.py
, we have the following code:The second
if
statement should read:The text was updated successfully, but these errors were encountered: