openai / transformer-debugger

MIT License
3.98k stars 232 forks source link

Question: Can't download model checkpoints from Azure blob model registry #19

Open antferdom opened 4 months ago

antferdom commented 4 months ago

I am attempting to download model checkpoints from the Azure Blob Model Registry associated with this repository. However, access denial errors appear to suggest that there's no public access to that storage, but only access via accounts that are added as external to openAI's tenant.

filename: _modelregistry.py

_MODEL_SPECS: dict[str, StandardModelSpec] = {
    # GPT-2 series
    "gpt2-small": StandardModelSpec(
        model_path="az://openaipublic/neuron-explainer/subject-models/gpt2/small"
    ),
    "gpt2-medium": StandardModelSpec(
        model_path="az://openaipublic/neuron-explainer/subject-models/gpt2/medium"
    ),
    "gpt2-large": StandardModelSpec(
        model_path="az://openaipublic/neuron-explainer/subject-models/gpt2/large"
    ),
    "gpt2-xl": StandardModelSpec(
        model_path="az://openaipublic/neuron-explainer/subject-models/gpt2/xl"
    ),
}
access denial error

Could you please verify whether the aforementioned Azure Blob storage is intended to be publicly accessible for model checkpoint retrieval?

antferdom commented 4 months ago

10