Skip to content

Commit

Permalink
cr
Browse files Browse the repository at this point in the history
  • Loading branch information
Raalsky committed Jul 26, 2024
1 parent 30b6c82 commit 99033eb
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/neptune_scale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,14 @@ class Run(AbstractContextManager):
Representation of tracked metadata.
"""

Args:
project (str): Name of the project where the run should go, in the form `workspace-name/project_name`.
api_token (str): User's API token.
family (str): It must be common for all runs in a given run hierarchy. Select any string.
run_id (str): It must be unique in the project.
"""
def __init__(self, *, project: str, api_token: str, family: str, run_id: str) -> None:
"""
Initializes a run that logs the model-building metadata to Neptune.
Args:
project: Name of the project where the metadata is logged, in the form `workspace-name/project-name`.
api_token: Your Neptune API token.
family: Identifies related runs. For example, the same value must apply to all runs within a run hierarchy.
family: Identifies related runs. For example, the same value must apply to all runs within a run hierarchy.
Max length: 128 characters.
run_id: Unique identifier of a run. Must be unique within the project. Max length: 128 characters.
"""
Expand Down

0 comments on commit 99033eb

Please sign in to comment.