You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the Neptune ML Sample Application notebook 03-Real-Time-Fraud-Detection-Using-Inductive-Inference it fails copying the script neptune_ml_utils.py which is required in subsequent steps (e.i. Import the ML utility and check if ML is enabled.)
Command failing:
!cp ../neptune_ml_utils.py .
Output error:
cp: cannot stat ‘../neptune_ml_utils.py’: No such file or directory
Subsequent errors:
import neptune_ml_utils as neptune_ml
neptune_ml.check_ml_enabled()
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[9], line 1
----> 1 import neptune_ml_utils as neptune_ml
2 neptune_ml.check_ml_enabled()
ModuleNotFoundError: No module named 'neptune_ml_utils'
Issue seems to be caused by changes in notebooks folder structure
Go to '/Neptune/03-Neptune-ML/03-Sample-Applications'
Click on '03-Real-Time-Fraud-Detection-Using-Inductive-Inference'
Scroll down to 'Cell 3'
Run cell and see error
If applicable, add screenshots to help explain your problem.
Expected behavior
Cell 3 on notebook 03-Real-Time-Fraud-Detection-Using-Inductive-Inference should be updated with the correct path to script neptune_ml_utils.py. Also an environment variable could be used to initialize the notebook by referencing a central folder with utils & scripts
The text was updated successfully, but these errors were encountered:
When running the Neptune ML Sample Application notebook
03-Real-Time-Fraud-Detection-Using-Inductive-Inference
it fails copying the scriptneptune_ml_utils.py
which is required in subsequent steps (e.i. Import the ML utility and check if ML is enabled.)Command failing:
!cp ../neptune_ml_utils.py .
Output error:
cp: cannot stat ‘../neptune_ml_utils.py’: No such file or directory
Subsequent errors:
Issue seems to be caused by changes in notebooks folder structure
Workaround:
!cp ../01-Gremlin/neptune_ml_utils.py .
To Reproduce
Steps to reproduce the behavior:
If applicable, add screenshots to help explain your problem.
Expected behavior
Cell 3 on notebook
03-Real-Time-Fraud-Detection-Using-Inductive-Inference
should be updated with the correct path to scriptneptune_ml_utils.py
. Also an environment variable could be used to initialize the notebook by referencing a central folder with utils & scriptsThe text was updated successfully, but these errors were encountered: