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 = "2720522a-e7dd-426a-8b3f-6825cf0890d6"
# 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)
Animated scatter plots showing latent feature evolutions during heating
Here we showcase a few key latent features and their relationships to each other, points colored by their Tc. We animate from 0 K to ~130 K.
Superconductivity as a sweet spot of properties
postThe 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...