We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b985a commit e60aab1Copy full SHA for e60aab1
src/automation/tasks/guidellm.py
@@ -38,18 +38,14 @@ def __init__(
38
39
# Set packages, taking into account default packages
40
# for the LMEvalTask and packages set in the config
41
- print(self.guidellm_packages)
42
- print(packages)
43
if packages is not None:
44
packages = list(set(packages + self.guidellm_packages))
45
else:
46
packages = self.guidellm_packages
47
48
49
if "packages" in config_kwargs:
50
packages = list(set(packages + config_kwargs.pop("packages")))
51
52
53
# Initialize base parameters
54
super().__init__(
55
project_name=project_name,
0 commit comments