Li-ion Intercalation Electrode Materials Exploration
Project description
LIEME
๐ LIEME: Li-ion Intercalation Electrode Materials Exploration.
LIEME is an open source python package for discovering new Li intercalation electrode materials.
- ๐ฅ๏ธ The computational framework maps first principles derived input features to experimentally measured performance for electrode materials using automated machine learning.
- ๐ฅ The input features for materials can be obtained from manual density functional theory (DFT) calculations, or from Materials Project via the API.
- โ ๏ธ Usually, electrode material datasets which contain experimental performance data are small (< 100 datapoints). There is high risk of overfitting. To prevent this, only
min(f,int(0.1*d))features should be considered for training, where f is the total number of features and d is the number of datapoints. This ensures less than 10% feature-data ratio as recommended in this paper. - ๐ Models are trained on all feature subsets. This results in
combinations(f,int(0.1*d))models. Each model explores different subspace of the feature space. - ๐ Final performance is obtained by averaging the predictions from all high-performing models.
- โ๏ธ The training process is automated using TPOT and heavily parallelizable (for example, using SLURM array jobs, where each job is for training one model).
- ๐พ All the models are stored in an SQLite database.
Installation
LIEME requires Python 3.11 or newer.
Install the latest stable build using the following command.
pip install lieme
If you want the latest developement version, clone the repo and install in editable mode.
git clone https://github.com/sreeharshab/lieme.git
cd lieme
pip install -e .
After installation, you can import LIEME in Python.
import lieme
LIEME depends on several scientific packages, which will be installed automatically when using pip. To avoid dependency conflicts with other packages, it is recommended to create a new conda environment and install LIEME using pip.
Usage
Obtaining Input Features by Parsing DFT Data
Input features can be generated for materials for which manual DFT data is available in the following directory structure.
material
โโโ Energy_calculation
โโโ Electronic_calculation
โโโ Bader_calculation
โโโ Intercalation
โโโโโโ n_Li
โโโโโโ โโโ Site
โโโโโโโโโ โโโ geo_opt
โโโโโโโโโ โโโ dos
โโโโโโโโโ โโโ bader
n in n_Li is a positive integer. Site can be replaced with any custom name. An example of the directory structure is provided in the example directory.
from lieme.featurize import get_material_features
materials = [material]
x = get_material_features(materials=materials)
Obtaining Input Features from Materials Project
Input features can also be generated for materials in Materials Project.
from lieme.mpfetch import FetchMaterials
fetcher = FetchMaterials(api_key="MATERIALS PROJECT API KEY")
x = fetcher.get_material_features()
When fetching materials from Materials Project, standard_constraints are passed to filter results. You can add additional constraints using custom_constraints. standard_constraints can also be switched off by passing standard_constraints=False to get_material_features().
Machine Learning
Machine learned models can be generated and used according to the following procedure.
from lieme.ml import MaterialsEchemRegressor
regressor = MaterialsEchemRegressor()
regressor.generate_train_jobs(n_features=4)
regressor.train(job_id=10)
generate_train_jobs() generates jobs.pkl which contains feature subset tuples such as (feature_name_1, feature_name_2, feature_name_3, feature_name_4). For example, if the total number of features are 20, then combinations(20,4) which is 4845 tuples are present in jobs.pkl. Then, train(job_id) can train the model with the feature subset corresponding to the job_id. After training, the job_id, best model, feature subset and the cross validation score of the best model are saved to an SQLite database.
regressor.write_train_results_to_db()
The performance of new materials can be predicted after training the models.
predictions = regressor.test()
Make sure you have x_train, y_train and x_test as .pkl files when you run the code mentioned above. If not, pass in x_train and y_train in train() and x_test in test().
For advanced usage, refer to the detailed documentation in the respective modules.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lieme-0.3.0.tar.gz.
File metadata
- Download URL: lieme-0.3.0.tar.gz
- Upload date:
- Size: 280.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
656ea248c0e72f65569ba031b57eaff5ad81a74e1ca543e00a6caa98c973c68e
|
|
| MD5 |
95e8ed2268a6d08bbce4b0f4697c7a44
|
|
| BLAKE2b-256 |
e689e73a5492779479efd171889d8bf817934143fef4dfc4eccceef2f008f36e
|
File details
Details for the file lieme-0.3.0-py3-none-any.whl.
File metadata
- Download URL: lieme-0.3.0-py3-none-any.whl
- Upload date:
- Size: 27.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eee1fcb6ab188dbc719b91e0e01048f561b7d7ef796b79feb9879d50dde487d9
|
|
| MD5 |
8681db8735cdfacf27f7a7dbf098625f
|
|
| BLAKE2b-256 |
758edeb035bc7ad45df88f07b23d7e7bc471c004bde08944582f1b4035b0a9b9
|