mirror of
https://github.com/clearml/clearml-agent
synced 2025-06-26 18:16:15 +00:00
Add --gpus / --cpu-only (equivalent to NVIDIA_VISIBLE_DEVICE)
Add agent.python_binary specifying full path to python binary to use for virtual environement creation Fix Windows support
This commit is contained in:
@@ -212,8 +212,8 @@ class TableResponse(Response):
|
||||
fields = fields or self.fields
|
||||
from trains_agent.helper.base import create_table
|
||||
return create_table(
|
||||
(tuple(getter(item, attr) for attr in fields) for item in self),
|
||||
titles=fields, headers=True,
|
||||
(dict((attr, getter(item, attr)) for attr in fields) for item in self),
|
||||
titles=fields, columns=fields, headers=True,
|
||||
)
|
||||
|
||||
def display(self, fields=None):
|
||||
|
||||
Reference in New Issue
Block a user