Downloads · 30 days
0
IMFAA/Magnet_Tc_predictor
Magnet_Tc_predictor is a tabular regression model from IMFAA. Use it for the tabular regression task on the model card, and read the license before you ship it in a product. It is set up for sklearn.
Downloads · 30 days
0
Access
Public
Updated Nov 14, 2023
Repo size
76.3 MB
Likes
2
Public
Click a slice to open those files.
.joblib76.3 MB · 100%
From the Hugging Face model README
Model Description
The magnet Curie temperature (Tc [K]) predictor model has been trained using a supervised learning approach on a specific set of magnet classes having 14:2:1 phases. The dataset to train the Tc prediction model is a distinct literature source. Further, the Tc values for various 14:2:1 magnet phases at room temperature are considered for dataset creation.
It predicts the Tc value using the chemical composition as a feature.
E.g: To predict the Tc value Nd2Fe14B1 magnet composition, the features are Nd=2, Fe=14, and B=1.
Application & Limitations
Input feature as the chemical composition of the test sample should match the sequence of the features described in the config file.
The trained model is valid for 14:2:1 phases only, which are stoichiometric compositions and the predicted Tc value is in Kelvin and at room temperature.
Model pipeline
The voting regressor to predict the Tc combines the following four base models and equal weight is assigned to each base model.
import json
import joblib
import pandas as pd
Tc_predictor = joblib.load('Magnet_Tc_predictor.joblib') # trained model
config = json.load(open('config.json'))
features = config['features'] # feature vector
#data = pd.read_excel("data.xlsx") # read test file with new compositions
data = data[features]
Predicted_value = Tc_predictor.predict(data) # predict Tc values
print("Predicted Tc value is: {0:.2f}'.format(Predicted_value)")