openai / automated-interpretability

940 stars 110 forks source link

No Azure credentials were found #8

Closed smile-II closed 1 year ago

smile-II commented 1 year ago

Error: Could not find any credentials that grant access to storage account: 'openaipublic' and container: 'neuron-explainer' Access Failure: message=Could not access container, request=, status=404, error=ResourceNotFound, error_description=The specified resource does not exist. RequestId:ef3dbd4b-701e-00d0-03cc-87e199000000 Time:2023-05-16T07:59:35.0263720Z, error_headers=Content-Length: 223, Content-Type: application/xml, Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0, x-ms-request-id: ef3dbd4b-701e-00d0-03cc-87e199000000, x-ms-version: 2019-02-02, x-ms-error-code: ResourceNotFound, Date: Tue, 16 May 2023 07:59:34 GMT

No Azure credentials were found. If the container is not marked as public, please do one of the following:

smile-II commented 1 year ago

The demo cannot run. Is there a more detailed configuration tutorial available?

0xSMT commented 1 year ago

If you want to pull individual data files, I wrote this code:

import json
import urllib.request

def load_az_json(url):
    with urllib.request.urlopen(url) as f:
        neuron_record = f.read()    

    return json.loads(neuron_record)

def load_neuron(layer_index, neuron_index):
    url = f"https://openaipublic.blob.core.windows.net/neuron-explainer/data/explanations/{layer_index}/{neuron_index}.jsonl"

    return load_az_json(url)

# program entry point
if __name__ == "__main__":
    import argparse
    parser = argparse.ArgumentParser(description='Load neuron explanation from Azure')
    parser.add_argument('layer_index', type=int, help='layer index')
    parser.add_argument('neuron_index', type=int, help='neuron index')
    args = parser.parse_args()

    neuron = load_neuron(args.layer_index, args.neuron_index)

    explanation = neuron["scored_explanations"][0]["explanation"]
    score       = neuron["scored_explanations"][0]["scored_simulation"]["ev_correlation_score"]

    print(f"Layer {args.layer_index}, Neuron {args.neuron_index}: [{explanation}] with score [{round(score, 2)}]")

This can be extended to other files, by the following convention: for the below paths, replace az://openaipublic/ with https://openaipublic.blob.core.windows.net/

This can be extended to download all of the files if you wish by wrapping it in some loops (48 layers, 6400 neurons per layer, 0 indexed).

williamrs-openai commented 1 year ago

Should be fixed for load_neuron as of https://github.com/openai/automated-interpretability/pull/15