@@ -367,6 +367,7 @@ def _load_py_module(name: str, location: str) -> ModuleType:
367367 # TODO: these are missing objects.inv
368368 # "comet_ml": ("https://www.comet.com/docs/v2/", None),
369369 # "neptune": ("https://docs.neptune.ai/", None),
370+ # "neptune scale": ("https://docs-beta.neptune.ai/", None),
370371 # "wandb": ("https://docs.wandb.ai//", None),
371372}
372373nitpicky = True
@@ -476,6 +477,7 @@ def _load_py_module(name: str, location: str) -> ModuleType:
476477 ("py:meth" , "move_data_to_device" ),
477478 ("py:class" , "neptune.Run" ),
478479 ("py:class" , "neptune.handler.Handler" ),
480+ ("py:class" , "neptune_scale.Run" ),
479481 ("py:meth" , "on_after_batch_transfer" ),
480482 ("py:meth" , "on_before_batch_transfer" ),
481483 ("py:meth" , "on_save_checkpoint" ),
@@ -620,7 +622,7 @@ def package_list_from_file(file):
620622from lightning.pytorch.cli import _JSONARGPARSE_SIGNATURES_AVAILABLE as _JSONARGPARSE_AVAILABLE
621623from lightning.pytorch.utilities.imports import _TORCHVISION_AVAILABLE
622624from lightning.fabric.loggers.tensorboard import _TENSORBOARD_AVAILABLE, _TENSORBOARDX_AVAILABLE
623- from lightning.pytorch.loggers.neptune import _NEPTUNE_AVAILABLE
625+ from lightning.pytorch.loggers.neptune import _NEPTUNE_AVAILABLE, _NEPTUNE_SCALE_AVAILABLE
624626from lightning.pytorch.loggers.comet import _COMET_AVAILABLE
625627from lightning.pytorch.loggers.mlflow import _MLFLOW_AVAILABLE
626628from lightning.pytorch.loggers.wandb import _WANDB_AVAILABLE
0 commit comments