/mattergen/generate/magnetic-density
Generate crystal structures with magnetic density conditioning
Range: 1 to 64
Number of structures to generate in each batch
Range: 0 to 10
Diffusion guidance factor. Higher values produce samples that better match the target property but may be less realistic.
Range: 0.01 to 0.3
Target magnetic density value in units of Angstrom^-3
Generate crystal structures with magnetic density conditioning
const url = 'https://api.ouro.foundation/routes/mmoderwell/mattergen/generate/magnetic-density';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"batch_size": 8,
"guidance_factor": 2,
"magnetic_density": 0
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
That's the mission here. The process is pretty simple. Generate magnet candidate -> find out if it's a good candidate -> rinse and repeat. Anyone can contribute. It's a numbers game, so the more peopl
Route views over time