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 = "cb30db1c-5265-4964-b5ff-e9bc912b1f7d"
# 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)Determining the max Tc is not straightforward
We notice that near the true Tc, we are starting to predict non-superconductivity, but it's only two points below 50% and they aren't necessarily continuous because of how measured temperature is fluctuating.
Careful evaluation of the classifier model is important so that we can truly understand the capabilities and performance of a Tc predicting model. Particularly important to us is the ability for the m
9mo
1 reference
Loading compatible actions...
Loading comments...