NGC access denied issue

I installed NGC on my Spark using this page from the Spark User Guide:

all good and I can “ngc registry model list” and many show up in the list, however when I try this one from the same page (further down) from the User Guide, it says I’m denied:
andrew@spark-8a73:~/ngc-cli$ ./ngc registry model list nvidia/bert-base-uncased:1
Client Error: 403 Response: Access Denied - Request Id: 9e435108-2397678 Url: https://api.ngc.nvidia.com/v2/org/nvidia/models/bert-base-uncased/versions?page-size=1000&sort-order=SEMVER_DESC

Andrew

this is a sign that you didn’t authenticate using your token. reference NGC — DGX Spark User Guide

this says i logged in:

andrew@spark-8a73:~$ docker login nvcr.io
Authenticating with existing credentials… [Username: $oauthtoken]

i Info → To login with a different account, run ‘docker logout’ followed by ‘docker login’

Login Succeeded
andrew@spark-8a73:~$ cd ngc-cli
andrew@spark-8a73:~/ngc-cli$  ./ngc registry model list nvidia/bert-base-uncased:1
Client Error: 403 Response: Access Denied - Request Id: c557c8c0-640943 Url: https://api.ngc.nvidia.com/v2/org/nvidia/models/bert-base-uncased/versions?page-size=1000&sort-order=SEMVER_DESC
andrew@spark-8a73:~/ngc-cli$

Hi @amcintyre, the command to download this model would be ngc registry model download-version "nvidia/nemo/bertbaseuncased:1.0.0rc1"
Thank you for bringing this up, there might be a documentation error in the User Guide

this says i logged in:

andrew@spark-8a73:~$ docker login nvcr.io
Authenticating with existing credentials… [Username: $oauthtoken]

i Info → To login with a different account, run ‘docker logout’ followed by ‘docker login’

Login Succeeded
andrew@spark-8a73:~$ cd ngc-cli
andrew@spark-8a73:~/ngc-cli$  ./ngc registry model list nvidia/bert-base-uncased:1
Client Error: 403 Response: Access Denied - Request Id: c557c8c0-640943 Url: https://api.ngc.nvidia.com/v2/org/nvidia/models/bert-base-uncased/versions?page-size=1000&sort-order=SEMVER_DESC
andrew@spark-8a73:~/ngc-cli$

The list works now when I use that model name. thanks. I should also try wildcards more to see what is in the registry.

Andrew