9mo
Python SDK requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY.
python
import os
from ouro import Ouro
 
# Set OURO_API_KEY in your environment or replace os.environ.get("OURO_API_KEY")
ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))
 
file_id = "9d432653-8a5c-4c3b-b864-cf19f5dc0b69"
 
# Retrieve file metadata and signed URL
f = ouro.files.retrieve(file_id)
print(f.name, f.visibility)
 
data = f.read_data()  # fetches signed URL
print(data.url)Attempting to correlate latent features to Magpie features
Only one of our latent features strongly correlated with some physical property, but other than that it was not a very successful experiment.
- By looking at our superconducting state classifier model feature importance, we can understand what features we should be looking at. From there, we can start to study how these features change across 9mo
1 reference
 Loading compatible actions...
 Loading comments...