Here we have an HTML file generated from Python and Plotly that displays ~5,000 magnetic materials in 3 dimensions. To generate this visual, I took each material and "embedded" it by running it through the Orb v2 MLIP model and extracted the latent space part of the GNN.
I then reduce 256 dimensional output into just 3 with UMAP and visualized each, colored by their magnetic density.
A 3D interactive scatter plot of magnetic materials from Materials Project. Points are colored by the materials estimated magnetic density and poitioned by UMAP reduction of Orb v2 model latent space
The visualization is interactive. You can zoom around, find clusters, and see what Materials Project material each is. I've found some interesting clusters of high density while still seemingly different chemical systems.
The idea is to use these dimensions and the "location" of known permanent magnets and find similar materials. It's another layer of candidate filtering. We're basically looking for ranges on the values of the latent features that may lead to good magnets. Ideally, it will encode anisotropy or coercivity, two important features we haven't been able to build a model for yet.
If would could find a material like NdFeB but without rare-earths, that would be amazing.
I'll work on a dataset similar to the recent one I shared of magnetic materials with Curie temperature and magnetic density, with an added column of cosine similarity or L2 distance to a couple known permanent magnets.
I tried the same thing with superconductors to see if we could find clusters of high-Tc materials. Check that out here:
Using the 256 dimensional latent space output from the Orb model, we visualize the 3DSC(MP) dataset using t-SNE and UMAP. The UMAP projection has been given the target for learning a manifold that keeps similar Tc materials close together.
In our exploration of magnetic materials, we did some embedding via Orb v2 and some dimensionality reduction.