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 = "960254c7-043f-4cd0-b7ef-7595305e8f56"
# 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)Scatter plot comparing numeric features in the 3DSC dataset
We find a similar idea that high-Tc materials form clusters and are generally a sweet spot within the range of a feature's values.
The below animation shows a selection of important features to superconductivity and how they evolve as the materials are heated up to their critical temperature. Notice how for most features, there i
9mo
1 reference
Loading compatible actions...
Loading comments...