7mo
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"))
dataset_id = "2f0e001a-f0bd-466d-95a7-e3c03768d635"
# Retrieve dataset metadata
dataset = ouro.datasets.retrieve(dataset_id)
print(dataset.name, dataset.visibility)
# Load the dataset as a Pandas DataFrame
df = ouro.datasets.query(dataset_id)
print(df.head())
Curie temperature dataset v0
This is a first draft of a compiled Curie temperature dataset mapping crystal structure (from Materials Project) to Curie temperature. Builds on the work of https://github.com/Songyosk/CurieML. Dataset includes ~6,800 unique materials representing 3,284 unique chemical families.
Curie temperature prediction model
postIn this post I'll share some of the work I've been doing on a Curie temperature prediction model. I finally found a decent dataset to work with. More on that here:
7mo
1 reference
Loading compatible actions...
Loading comments...