neptune-scale environment variables
Environment variables related to the neptune-scale Python package.
NEPTUNE_DEBUG_MODE
Whether to log debug information into neptune.NUMBER.log
files. Use for debugging and troubleshooting purposes.
The default value is False
.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_DEBUG_MODE=True
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_DEBUG_MODE=True
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_DEBUG_MODE True
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.
NEPTUNE_DISABLE_COLORS
Whether to remove the coloring of Neptune console output, such as warnings and other messages printed in the terminal.
The default value is False
.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_DISABLE_COLORS=True
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_DISABLE_COLORS=True
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_DISABLE_COLORS True
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.
NEPTUNE_LOG_DIRECTORY
The base directory where experiment and run metadata is stored:
- If the path is absolute, it's used as provided.
- If the path is relative, it's treated as relative to the current working directory.
The default is .neptune
in the current working directory.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_LOG_DIRECTORY=my/custom/datadir/path
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_LOG_DIRECTORY=my/custom/datadir/path
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_LOG_DIRECTORY my/custom/datadir/path
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.
NEPTUNE_LOG_FAILURE_ACTION
When Neptune logs data to the local disk, the operation might fail if the disk is full or another internal error occurs. Use this environment variable to control what happens if Neptune is unable to store the data locally:
drop
→ Drop the data and log an error tostdout
.raise
→ Raise theNeptuneUnableToLogData
exception.
The default value is drop
.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_LOG_FAILURE_ACTION=raise
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_LOG_FAILURE_ACTION=raise
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_LOG_FAILURE_ACTION raise
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.
NEPTUNE_MODE
The mode to use Neptune in: async, disabled, or offline.
The default value is aync
.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_MODE=offline
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_MODE=offline
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_MODE offline
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.
NEPTUNE_SKIP_NON_FINITE_METRICS
If you attempt to log non-finite metric values, such as NaN
or Inf
, Neptune skips such values without erroring. To make Neptune raise an exception instead, set this environment variable to False
.
The default value is True
.
- Linux
- macOS
- Windows
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_SKIP_NON_FINITE_METRICS=False
Append a line with the export command to your .profile
or other shell initialization file:
export NEPTUNE_SKIP_NON_FINITE_METRICS=False
In a terminal app, such as PowerShell or Command Prompt, enter the setx
command and press enter:
setx NEPTUNE_SKIP_NON_FINITE_METRICS False
To activate the change, restart the terminal app.
You can also navigate to Settings → Edit the system environment variables and add the variable there.