Bayesian Approach to Designing Microstructures and Processing Pathways for Tailored Material Properties
This repository contains research code associated with work entitled "Bayesian Approach to Designing Microstructures and Processing Pathways for Tailored Material Properties". The proposed framework utilizes a conditional continuous normalizing flow (CNF) trained with the flow matching objective proposed by Lipman et al. (2023), and a composite process-structure and structure-property linkage as the forward model for implicitly learning the joint distribution between processing parameters and an arbitrary property set.
If you find this code useful, interesting, and are open to collaboration, please reach out! Alternatively, if you have any questions regarding the contents of this repository or portions of the work, feel free to as well at: agenerale3@gatech.edu. Please consider citing this work (expand for BibTeX).
A. Generale, C. Kelly, G. Harrington, A. Robertson, M. Buzzy, S. Kalidindi. Bayesian Approach to Designing Microstructures and Processing Pathways for Tailored Material Properties, 2023.
@inproceedings{
generale2023a,
title={A Bayesian Approach to Designing Microstructures and Processing Pathways for Tailored Material Properties},
author={Adam Generale and Conlain Kelly and Grayson Harrington and Andreas Robertson and Michael Buzzy and Surya Kalidindi},
booktitle={AI for Accelerated Materials Design - NeurIPS 2023 Workshop},
year={2023},
url={https://openreview.net/forum?id=zZPICTs5gB}
}The framework is briefly displayed below. A prior distribution over the constutient motility and initial concentrations in the phase-field model is defined, alongside a likelihood constructed by a composition of probabilistic forward models (process-structure and structure-property linkages). The microstructure is represented in a statistical sense with a low-dimensional PC representation of its 2-point spatial correlations (
Model performance is evaluated across the entire dataset. Each property set is considered as a target for the framework, where points are sampled from the posterior
This section provides a brief description of the contents of this repository.
-
Data: Contains processing parameters, resulting property set (elastic + thermal properties), and PC scores of 2-point spatial correlations of microstructures in the initial dataset.
-
Helpers: Code for helper functions utilized in main script main.py.
-
Models: Contains code for instantiating the sparse variational multi-output Gaussian process (SV-MOGP) used in this work, along with the actual trained models utilized.
-
main.py: Main executable for training and post-processing results from the conditional continuous normalizing flow.
-
main_ps.py: Main executable for training of the SV-MOGP process-structure linkage.
-
main_sp.py: Main executable for training of the SV-MOGP structure-property linkage.
Inference of the conditional microstructure distributions provided above can be replicated as
python main.py
where the mode flag can be set to either 'train' or 'eval' at the command line. For example:
python main.py --mode "eval"
allows for postprocessing of the results.

