-
-
Notifications
You must be signed in to change notification settings - Fork 692
Update Polyaxon_logger example for v1.X #2763
Copy link
Copy link
Closed
Description
📚 Documentation
# Log experiment parameters with <1.0
plx_logger.log_params(**{
"seed": seed,
"batch_size": batch_size,
"model": model.__class__.__name__,
"pytorch version": torch.__version__,
"ignite version": ignite.__version__,
"cuda version": torch.version.cuda,
"device name": torch.cuda.get_device_name(0)
})and for >=1.X one should do
plx_logger.log_inputs(**{
"seed": seed,
"batch_size": batch_size,
"model": model.__class__.__name__,
"pytorch version": torch.__version__,
"ignite version": ignite.__version__,
"cuda version": torch.version.cuda,
"device name": torch.cuda.get_device_name(0)
})Let's add newer option instead of the old one
Reactions are currently unavailable