We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0875083 commit db84ae0Copy full SHA for db84ae0
nemo_run/core/execution/dgxcloud.py
@@ -24,7 +24,7 @@
24
from enum import Enum
25
from pathlib import Path
26
from typing import Any, Iterable, Optional
27
-
+import logging
28
import requests
29
from invoke.context import Context
30
@@ -37,6 +37,9 @@
37
from nemo_run.core.packaging.git import GitArchivePackager
38
39
40
+logger = logging.getLogger(__name__)
41
+
42
43
class DGXCloudState(Enum):
44
CREATING = "Creating"
45
INITIALIZING = "Initializing"
@@ -626,3 +629,4 @@ def __repr__(self) -> str:
626
629
# ---------------------------------------------------
627
630
{self.materialize()}
628
631
"""
632
+"""
0 commit comments