Collab
monitor
monitor(
ctx,
show_help=Option(
False,
"--help",
"-h",
is_flag=True,
help="Show help message and exit.",
),
)
Start collaborative training monitor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx |
Context
|
Typer (Click like) special internal object that holds state relevant for the script execution at every single level. |
required |
show_help |
bool, default
|
Show remote train options. |
Option(False, '--help', '-h', is_flag=True, help='Show help message and exit.')
|
Source code in src/trecover/app/cli/collab.py
visualize
visualize(
ctx,
show_help=Option(
False,
"--help",
"-h",
is_flag=True,
help="Show help message and exit.",
),
)
Visualize collaborative training progress.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx |
Context
|
Typer (Click like) special internal object that holds state relevant for the script execution at every single level. |
required |
show_help |
bool, default
|
Show remote train options. |
Option(False, '--help', '-h', is_flag=True, help='Show help message and exit.')
|
Source code in src/trecover/app/cli/collab.py
tune
tune(
ctx,
show_help=Option(
False,
"--help",
"-h",
is_flag=True,
help="Show help message and exit.",
),
)
Tune batch size for this machine.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx |
Context
|
Typer (Click like) special internal object that holds state relevant for the script execution at every single level. |
required |
show_help |
bool, default
|
Show tune options. |
Option(False, '--help', '-h', is_flag=True, help='Show help message and exit.')
|
Source code in src/trecover/app/cli/collab.py
train
train(
ctx,
show_help=Option(
False,
"--help",
"-h",
is_flag=True,
help="Show help message and exit.",
),
)
Start collaborative training.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx |
Context
|
Typer (Click like) special internal object that holds state relevant for the script execution at every single level. |
required |
show_help |
bool, default
|
Show collab train options. |
Option(False, '--help', '-h', is_flag=True, help='Show help message and exit.')
|
Source code in src/trecover/app/cli/collab.py
aux
aux(
ctx,
show_help=Option(
False,
"--help",
"-h",
is_flag=True,
help="Show help message and exit.",
),
)
Start auxiliary peers for gradient averaging (for cpu-only workers).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx |
Context
|
Typer (Click like) special internal object that holds state relevant for the script execution at every single level. |
required |
show_help |
bool, default
|
Show collab train options. |
Option(False, '--help', '-h', is_flag=True, help='Show help message and exit.')
|