mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-10 16:55:42 +00:00

* Refactor into automl subpackage Moved some of the packages into an automl subpackage to tidy before the task-based refactor. This is in response to discussions with the group and a comment on the first task-based PR. Only changes here are moving subpackages and modules into the new automl, fixing imports to work with this structure and fixing some dependencies in setup.py. * Fix doc building post automl subpackage refactor * Fix broken links in website post automl subpackage refactor * Fix broken links in website post automl subpackage refactor * Remove vw from test deps as this is breaking the build * Move default back to the top-level I'd moved this to automl as that's where it's used internally, but had missed that this is actually part of the public interface so makes sense to live where it was. * Re-add top level modules with deprecation warnings flaml.data, flaml.ml and flaml.model are re-added to the top level, being re-exported from flaml.automl for backwards compatability. Adding a deprecation warning so that we can have a planned removal later. * Fix model.py line-endings * Pin pytorch-lightning to less than 1.8.0 We're seeing strange lightning related bugs from pytorch-forecasting since the release of lightning 1.8.0. Going to try constraining this to see if we have a fix. * Fix the lightning version pin Was optimistic with setting it in the 1.7.x range, but that isn't compatible with python 3.6 * Remove lightning version pin * Revert dependency version changes * Minor change to retrigger the build * Fix line endings in ml.py and model.py Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu> Co-authored-by: EgorKraevTransferwise <egor.kraev@transferwise.com>
118 lines
3.3 KiB
Python
118 lines
3.3 KiB
Python
from typing import Dict, Any
|
|
import numpy as np
|
|
|
|
from flaml.automl.data import (
|
|
SUMMARIZATION,
|
|
SEQREGRESSION,
|
|
SEQCLASSIFICATION,
|
|
MULTICHOICECLASSIFICATION,
|
|
TOKENCLASSIFICATION,
|
|
)
|
|
|
|
|
|
def load_default_huggingface_metric_for_task(task):
|
|
|
|
if task == SEQCLASSIFICATION:
|
|
return "accuracy"
|
|
elif task == SEQREGRESSION:
|
|
return "r2"
|
|
elif task == SUMMARIZATION:
|
|
return "rouge1"
|
|
elif task == MULTICHOICECLASSIFICATION:
|
|
return "accuracy"
|
|
elif task == TOKENCLASSIFICATION:
|
|
return "seqeval"
|
|
|
|
|
|
def is_a_list_of_str(this_obj):
|
|
return (isinstance(this_obj, list) or isinstance(this_obj, np.ndarray)) and all(
|
|
isinstance(x, str) for x in this_obj
|
|
)
|
|
|
|
|
|
def _clean_value(value: Any) -> str:
|
|
if isinstance(value, float):
|
|
return "{:.5}".format(value)
|
|
else:
|
|
return str(value).replace("/", "_")
|
|
|
|
|
|
def format_vars(resolved_vars: Dict) -> str:
|
|
"""Formats the resolved variable dict into a single string."""
|
|
out = []
|
|
for path, value in sorted(resolved_vars.items()):
|
|
if path[0] in ["run", "env", "resources_per_trial"]:
|
|
continue # TrialRunner already has these in the experiment_tag
|
|
pieces = []
|
|
last_string = True
|
|
for k in path[::-1]:
|
|
if isinstance(k, int):
|
|
pieces.append(str(k))
|
|
elif last_string:
|
|
last_string = False
|
|
pieces.append(k)
|
|
pieces.reverse()
|
|
out.append(_clean_value("_".join(pieces)) + "=" + _clean_value(value))
|
|
return ",".join(out)
|
|
|
|
|
|
counter = 0
|
|
|
|
|
|
def date_str():
|
|
from datetime import datetime
|
|
|
|
return datetime.today().strftime("%Y-%m-%d_%H-%M-%S")
|
|
|
|
|
|
def _generate_dirname(experiment_tag, trial_id):
|
|
generated_dirname = f"train_{str(trial_id)}_{experiment_tag}"
|
|
generated_dirname = generated_dirname[:130]
|
|
generated_dirname += f"_{date_str()}"
|
|
return generated_dirname.replace("/", "_")
|
|
|
|
|
|
def get_logdir_name(dirname, local_dir):
|
|
import os
|
|
|
|
local_dir = os.path.expanduser(local_dir)
|
|
logdir = os.path.join(local_dir, dirname)
|
|
return logdir
|
|
|
|
|
|
class Counter:
|
|
counter = 0
|
|
|
|
@staticmethod
|
|
def get_trial_fold_name(local_dir, trial_config, trial_id):
|
|
Counter.counter += 1
|
|
experiment_tag = "{0}_{1}".format(
|
|
str(Counter.counter), format_vars(trial_config)
|
|
)
|
|
logdir = get_logdir_name(
|
|
_generate_dirname(experiment_tag, trial_id=trial_id), local_dir
|
|
)
|
|
return logdir
|
|
|
|
|
|
class LabelEncoderforTokenClassification:
|
|
def fit_transform(self, y):
|
|
# if the labels are tokens, convert them to ids
|
|
if any(isinstance(id, str) for id in y[0]):
|
|
self.label_list = sorted(list(set().union(*y)))
|
|
self._tokenlabel_to_id = {
|
|
self.label_list[id]: id for id in range(len(self.label_list))
|
|
}
|
|
y = y.apply(lambda sent: [self._tokenlabel_to_id[token] for token in sent])
|
|
# if the labels are not tokens, they must be ids
|
|
else:
|
|
assert all(
|
|
isinstance(id, (int, np.integer)) for id in y[0]
|
|
), "The labels must either be tokens or ids"
|
|
return y
|
|
|
|
def transform(self, y):
|
|
if hasattr(self, "_tokenlabel_to_id"):
|
|
y = y.apply(lambda sent: [self._tokenlabel_to_id[token] for token in sent])
|
|
return y
|