Abstract
We compare several adaptive design strategies using a data set of 223 M2AX family of compounds for which the elastic properties [bulk (B), shear (G) and Young’s (E) modulus] have been computed using density functional theory. The design strategies are decomposed into an iterative loop with two main steps: machine learning is used to train a regressor that predicts elastic properties in terms of elementary orbital radii of the individual components of the materials; and a selector uses these predictions and their uncertainties to choose the next material to investigate. The ultimate goal is to obtain a material with desired elastic properties in as few iterations as possible. We examine how the choice of data set size, regressor and selector impact the design. We find that selectors that use information about the prediction uncertainty outperform those that don’t. Our work is a step in illustrating how adaptive design tools can guide the search for new materials with desired properties.
Similar content being viewed by others
Introduction
Regression methods have provided a foundation for modeling structure-property relationships in materials science1,2,3,4,5,6. These methods take as input a data set of known material compositions along with some property (e.g. strength, band gap, melting temperature, etc). Each material, in turn, is described in terms of one or more features that represent aspects of structure, chemistry, bonding and/or microstructure in an abstract, high-dimensional space. The success of regression is based on its ability to capture the relative variation in a property as a function of the features, eventually culminating in the prediction of new materials with desired properties.
Materials design is an optimization problem with the goal of maximizing (or minimizing) some desired property of a material, denoted by y, by varying certain features, denoted by x. Optimizing a material for targeted applications generally proceeds by iterating three steps: 1) develop a model (or a set of models) that enables prediction of y from x of known materials, 2) based on these models, optimally select a value of x, which corresponds to a new and yet-to-be synthesized material and 3) measure y at this value of x and add (x, y) to the database of known properties. The primary bottleneck in material design is step 3, measuring y, because it requires synthesis and characterization of new materials, which can be expensive and time consuming. Thus, we want to synthesize as few compounds as possible. Alternatively, in the case of a complex code (e.g. high-throughput first principles calculations7,8,9,10), we would want to make as few function calls or tractable number of calculations as possible. Thus, using the experiment or complex code as a means to exhaustively search (in a brute force manner) the vast space to optimize a given property is to be avoided. Instead, it is necessary to use a relatively cheap surrogate or inference model to learn from the available data and in conjunction with some form of design, guide experiments to minimize the number of new materials that need to be tested. Currently, the work in materials informatics is largely based on performing step 1, which requires finding a regressor that fits existing data to predict the best y.
Advances in operations research and machine learning suggest that merely choosing the predictions out of the regressor is not the best way to select x when the predicted values have uncertainties11. This is relevant for materials design because relatively small data sets are often used to extrapolate to a vast unexplored search space6, which means that model uncertainties will be important. When we can estimate the errors associated with the y-values, it is typically better to choose the x that gives the best “expected improvement”—a value that depends on both the predicted y and the predicted error in our estimate of y. The advantages of maximizing the expected improvement are amplified when the function predicting y from x has local optima—local optima are difficult to escape by many optimization methods. Both Efficient Global Optimization (EGO)11,12,13 and the closely related Knowledge Gradient (KG) algorithms14 use information about prediction error to select the next x to test. Both EGO and KG show good performance on a variety of problems outside of materials design11,15, particularly on engineering related problems and can be used to escape local optima.
In this paper, we describe our studies of the merits of different regressors and selectors for materials design. We briefly discuss various regression approaches in the Section entitled Regression. The next section then focuses on Selectors that use prediction uncertainties to suggest the next material to be tested. We discuss our application of these techniques to representative but well-understood materials science problems in the Section named Elastic Modulus Problems—selecting the compositions of compounds belonging to the family of M2AX phases, where the properties of interest are the elastic moduli: bulk (B), shear (G), or Young’s (E) modulus.
Regression
We studied three regressors: a Gaussian Process Model (GPM)16, Support Vector Regression with a radial basis function kernel and Support Vector Regression with a linear kernel . The regressors were implemented in the Scikit-learn python package17. Like other types of regression, a GPM assumes that where f is the function that must be estimated. Unlike most regression, f is treated as a point in an infinite-dimensional Gaussian distribution (that is, a Gaussian Process) over the set of functions. The Gaussian Process (like Gaussian Distributions) is completely defined by its mean and covariance, but the mean and covariance are functions and the covariance is given in terms of distances between x values. For our studies, the mean function was and the covariance was the square exponential function:
where θ and are free parameters. We set θ using maximum likelihood. We set (sometimes called the nugget) using cross-validation. Letting be non-zero can improve generalization when f is a rough function. We found that our results improved significantly when was allowed to be non-zero. With the fully specified Gaussian Process, the distribution of given the training samples is Gaussian with a mean and standard deviation that we can calculate. The calculated mean and standard deviation serve as the predicted y value and estimated error around the prediction.
On the other hand, we have observed better performance with the SVR regressors5. Here, the regressor is of the form
where the ai’s are coefficients that are fit to the data and is a kernel function. For , the kernel function is a dot product of x and xi, leading to a function that is linear in x. For , the kernel function is a radial basis function
and σ is determined by cross-validation. To obtain uncertainties with the SVR models we used a bootstrap approach. Using different subsamples of the training data, we re-trained the regressors multiple times and maintained an ensemble of these regressors. For a new material, we applied each member of the ensemble and kept track of the mean and standard deviation of various predictions of each of the predictors in the ensemble. These mean and error estimates were what we fed into the selector algorithms. For all of these learning algorithms, cross-validation was used to optimize the input parameters. Indeed, a separate cross-validation (and distinct parameter estimates) was done for each run.
In addition to the SVR and GPM regressors discussed in this paper, the kernel ridge regression (KRR) method is also used in the materials informatics literature4. KRR is similar to SVRrbf. Both schemes formulate the solution as a linear combination of Gaussian kernel functions, as expressed in Equation 2, but the coefficients differ. KRR minimizes a quadratic loss function, whereas SVRrbf is based on a (piecewise) linear loss function, potentially making it more robust to outliers. Overall, however, we would not expect substantial differences between them.
Selectors
In selecting the material to test next, we are implicitly balancing the goal of finding the best material (exploitation) with the need to improve our predictive model by exploration of the input space. While this balance has been extensively discussed in the literature under multi-armed bandits and surrogate-based optimization14,15, for most problems the best solution is not known.
Two heuristic approaches to balancing exploration and exploitation are the selector used by EGO and KG, mentioned in the Introduction. Both EGO and KG assume that we know, for each value of x, the probability density function, , of possible y values given that a compound with features x is measured. EGO suggests measuring the x that maximizes the expected improvement in y over our current best value. If is the value of the best material measured so far, then the expected improvement we would get by testing is: . If is a Gaussian distribution with mean μ and variance , the expected improvement is given by
where and and are the standard normal density and cumulative distribution functions, respectively11.
If all the data samples have the same small uncertainty σ, then varies monotonically with μ and and maximizing leads to the same selection as simply choosing the maximum prediction. However, increasing σ increases if μ is held constant. This follows from Equation (4) where the two limiting conditions that maximize are: (i) small σ for a given μ, or large μ for a given σ or (ii) large σ, given μ. For (i), the expected improvement, . This means that in the limit of no uncertainty or if uncertainties are the same for all points, is maximized by choosing the largest μ (i.e. exploitation). So the next best material for measurement is chosen by faithfully “trusting” the predictions from the regressor. On the other hand for (ii), for σ large. That is, in the limit of high uncertainty, is maximized by choosing the next best material with the largest uncertainty (exploration). It represents a region in our search space, where the regressor is most uncertain. Thus, typically captures the relative competition between these two extremes and provides a quantitative estimate to evaluate where the next measurement should be performed. This is shown schematically in Fig. 1.
In EGO, we easily distinguish between measured values (which we assume are precisely known) and unmeasured values that are estimated, with a μ and σ. In the EGO scenario, there is no need to measure the same material twice. In contrast, KG’s formulation incorporates measurement error. When measurement errors are included, all compounds, measured or not, are on a more equal footing than in EGO—they are all characterized by a distribution of possible values. Having no clear distinction between measured and unmeasured data values, KG compares the mean for each potential compound, , (measured or unmeasured) to the best of the rest of the potential compounds, i.e., . In our work to date, we set the measurement error to 0, so the primary difference between EGO and KG is the difference between (for EGO’s selector) and for (KG). In addition to studying the EGO and KG selectors, we studied the selectors defined below:
-
Max: This just chooses the highest expected score from the regressor.
-
Max-A: Alternates between choosing the material with the highest expected score and the material with the most uncertain estimated score.
-
Max-P: Maximizes the probability that a material will be an improvement, without regard to the size of the improvement.
-
Random: randomly chooses an unmeasured compound.
Elastic Modulus Problems
Data
Our data set consists of compounds belonging to the family of M2AX phases18. In the M2AX phases, the X atoms reside in the edge-connected M octahedral cages and the A atoms reside in slightly larger right prisms. In Fig. 2, we show the crystal structure and the chemical search space of M2AX phases. From Fig. 2B, a total of 240 chemical compositions can be exhaustively enumerated. We separately consider the problems of maximizing the elastic moduli: bulk (B), shear (G), or Young’s (E) modulus. Recently, there has been interest in applying informatics-based methods for M2AX phases19. However, our objective is different. We focus mainly on the problem of maximizing G, but we will analyze the adaptive design strategies in the context of the other properties as well (not explored by Sitaram et al.19). The elastic moduli were estimated using density functional theory (DFT) calculations and the data was taken from the literature20. Cover et al.20 carried out DFT as implemented in the Vienna Ab initio Simulation Package (VASP) code using the projector-augmented wave (PAW) core potentials. They treated the electron exchange and correlation within the generalized gradient approximation (GGA). Additional details may be found in Cover et al.20, who compared calculated elastic constants with experimental measurements and report variations up to 30 GPa. The elastic moduli have been calculated for all 240 stoichiometric M2AX compounds making this an ideal data set to investigate the nuances of our strategy. Of the 240 M2AX compositions, 17 were computed to have negative elastic constants and so were removed from the data set as they violated the Born criteria for elastic stability. This left us with N = 223 compounds to study (see Supplemental Information for the dataset).
Features
We employ orbital radii of M, A and X-atoms from the Waber-Cromer scale21 as features, x-values, which include the s-, p- and d-orbital radii for M, while the s- and p-orbital radii were used for the A and X atoms. This scale uses the self-consistent Dirac-Slater eigenfunctions and the radii correspond to the principal maxima in the charge-density distribution function for a specific orbital of a neutral atom. These features form a good starting point for this problem because of the fundamental relationship between the electronic charge density and elastic response of materials22,23. Factors such as elastic anisotropy that classify ductile from brittle materials have been shown to be related to the directional nature (or the lack thereof) of the chemical bonds formed between the s-, p-, d- or f-orbitals (near the Fermi level) of the nearest-neighbor atoms24. Furthermore, it was recently shown that these features have many characteristics that are favorable for machine learning studies25.
Results
In practice, as seen schematically in Fig. 3, we find a new material by first fitting a regressor to the materials whose properties we already know and then using that regressor to predict the properties of the materials in our domain of interest. Based on those predictions, a selector picks the most promising candidate. The properties of this candidate are measured (in this case, a DFT calculation is involved; in other cases, this might require synthesizing the material and performing laboratory measurements on that material). If the properties of this material are sufficiently favorable, or if the budget for testing new materials has been depleted, the iteration stops. The result of these iterations is a set of materials with (now) known properties, from which the best can be chosen for the purpose at hand.
In this work we re-run our procedure with statistics maintained for how well on average different regressor/selector pairs perform. This performance is measured both in terms of an “opportunity cost” (defined as the modulus difference between the current-best and the overall-best) and the number of iterations required to “discover” the best material. Iterations-until-best is a good measure of performance because each iteration is expensive and our aim is to minimize the cost. Of course, in practice we would not know what the best value in the overall population or full data set is, so strictly speaking, neither iterations-until-best nor opportunity cost can actually be obtained in an operational scenario. What can be obtained is best-so-far, which is (apart from an offset) equivalent to opportunity cost. Another advantage of opportunity cost is that it is commonly used in the literature (e.g. Powell and Ryzhov26 use opportunity cost to compare performance of KG and EGO algorithms). On the other hand, iterations-until-best provides a different perspective on performance; lower opportunity cost generally corresponds to fewer iterations-until-best, but iteration count emphasizes the performance after many iterations.
Each trial starts with a set of M initial compounds, chosen at random from samples in the full data set. The regressor is used to predict a distribution (mean and variance) of values for the property of interest for each of the data samples not in the training set. The selector uses these values to pick a promising candidate. This candidate is then measured to determine its actual y value. For this study, we know all the y values, so this measurement consists simply in revealing the property for that material. The material is added to the training data and a new regression model is learned from the augmented training data. This process iterates until the material with the “desired” property value is found. We consider several regressor/selector pairs, for a range of initial M values and over 1000 random initial training sets. It is applied to each of the six optimization problems (maximizing and minimizing the three elastic moduli).
In Fig. 4A, we compare the relative performance of the three regressors by plotting the regressor error as a function of the size of the training set M. Error bars represent the standard deviation of the mean for the regressor errors. We find that SVRrbf outperforms GPM (only marginally) and SVRlin (more clearly), which leads to the choice of SVRrbf as the regressor for predicting G. Using this regressor, we then compared selectors. For each selector, we performed 1,000 trials, each initialized with a different randomly chosen set of M = 20 compositions. For each trial, the M samples were used to train an ensemble of 10 SVRrbf regressors, each regressor being trained from random-with-replacement resampling of the dataset. This bootstrap training enabled the regressor to provide a prediction for G along with an error estimate (σ), for each composition in the virtual set of candidate samples.
The predicted and σ then serve as input to the selector, which computes a measure (e.g. expected improvement for EGO) for each candidate material (see Equation 4). The M2AX composition with the highest measure is selected as the candidate for the next experiment. The DFT-computed value of G for that candidate is used to augment the training set and the regression/selection process is iterated for a fixed number of iterations, with each iteration corresponding to a cycle in the loop. A normalized opportunity cost is computed as a function of total measurements in Fig. 4B. Initially, the SVRrbf:Max combination outperforms all other SVRrbf:selector combinations. After about 50 iterations, however, SVRrbf:Max is outperformed by SVRrbf:EGO, KG and Max-P, which behave very similarly.
We interpret the different behavior between SVRrbf:Max and SVRrbf:EGO, KG or Max-P selectors by conjecturing that our SVRrbf regressor is a continuous, non-linear function in the high-dimensional feature space with several local maxima (Fig. 1 shows a schematic of a landscape with two local maxima). During the initial iterations, where there are fewer data points to train SVRrbf, the regressor model leads to a local maximum. Even after a relatively large number of iterations (~50), we find that the opportunity cost for SVRrbf:Max does not reach zero, suggesting that SVRrbf:Max continuously selects candidate M2AX compositions that are in the vicinity of the local maximum. Since the Max selector does not take into account uncertainties in the predicted values, it is not able to explore the feature search space. Hence, it cannot overcome the local maximum, until a relatively large number of data points that span the chemical space become available to train the regressor. Therefore, SVRrbf:Max is not able to rapidly find the optimal M2AX composition with the largest G. In contrast, the SVRrbf:EGO, KG or Max-P combinations make use of uncertainties. These selectors employ expected improvement (Equation 4), which samples the composition space where the uncertainties are large. As a result, there is a balance between the local and global search, which is reflected in Fig. 4B where after ~50 iterations the opportunity cost for SVRrbf:EGO, KG or Max-P is lower than that for SVRrbf:Max. Figure 4C shows that when the initial number of random measurements is small, SVRrbf:EGO, KG and Max-P all discover the optimal composition with fewer new measurements (~35) than the other selectors (Max, Max-A). Merely choosing measurements at Random does not perform well.
Figure 4D shows a single step in a single trial. The trial started with measured values, but after fourteen measurements, there are now materials with known G modulus. These are used to train the regressor; and σ are plotted for all of the materials, including those in blue whose true y values are known. The next selection is the most promising value based on its and σ. This figure shows that we are in a regime of very high model error. Notice the out-of-sample data points (green in Fig. 4D) and in the limit of an ideal regression model, these points should lie close to the dotted red line. We highlight an out-of-sample data point, whose G value from DFT is 152 GPa, whereas the predicted G (mean value) from the SVRrbf regressor is 76 GPa. Although we would prefer regressor models with lower error, we remark that high model error is likely to be a common situation in data-driven approach to materials design and discovery with small data sets and a vast unexplored search space. We also see that even in the regime of large regressor error, directed search strategies can find optimal materials with fewer iterations than would be found with random selection and exploitation/exploration trade-off approaches (such as EGO and KG) are more effective than the naive Max selector.
To further test the robustness of our iterative design loop and regressor:selector combinations, we performed five additional simulated experiments, for a total of six that involved maximizing and minimizing all the three elastic properties (B, G and E). In Fig. 5, we show the SVRrbf:selector combination results for all elastic properties as a function of the normalized opportunity cost. We selected six different selectors: Random, Max, Max-A, Max-P, Knowledge Gradient (KG) and Efficient Global Optimization (EGO). In the majority of the cases, we found negligible difference between KG and EGO. In all but one case (the exception was maximizing the B modulus, Fig. 5A), KG and EGO outperformed the simple-minded Max selector.
Discussion
With growing interest in accelerating new materials discovery, machine learning methods are finding increasing use in materials science problems27,28,29,30,31,32,33. One of the outstanding challenges involved in a purely data-driven approach that utilizes experimental data is that regression models are trained on a relatively small data set and applied to predict the properties of a vast array of materials in the unexplored chemical space. Ideally, we would prefer highly accurate models and if such accuracy is attainable, then the model can accurately predict which material has the best property. Our work has shown that such a naïve exploitation strategy often results in suboptimal outcomes. This suboptimality has also been reported in the drug discovery and QSAR literature and attributed to “activity cliffs” and multiple local optima in the regression fitness landscape34,35.
We have demonstrated a more robust approach to finding new materials within a global optimization framework using regression with uncertainties, design of experiments (selectors) and iterative feedback, which we collectively refer to as adaptive design. The approach balances the trade-off between exploration and exploitation by choosing potential candidates that maximize the “expected improvement” (or minimize the expected opportunity cost) over the search space. We applied this design strategy on a M2AX phase data set obtained from DFT calculations. A smaller regressor error is always preferred, but in data-driven approaches to materials design and discovery, the regressor quality may be limited. In this regime of large regressor error it is important to take that error into consideration in the selection of the next material to investigate. In the data sets that we explored in this paper, the regressor error was substantial and selector strategies that incorporated exploration (notably, EGO and KG) outperformed the purely exploitive strategy of selecting the material with the best predicted value. We conclude that incorporating exploration into the selection of new materials yields better long-term performance in the context of optimizing targeted properties of new materials.
Finally, we discuss a number of challenges and generalizations for materials design. Although we have demonstrated the nuances and efficacy of the adaptive design approach using a data set from density-functional theory calculations, real materials design problems that involve experimental measurements rarely offer the luxury of precise and error-free property (y) values. Furthermore, as the chemical complexity increases (e.g. multicomponent systems), the number of potential crystal structure-types and chemical compositions to explore also increases exponentially. Often, only a small fraction from this vast structural and chemical space is experimentally known. As a result, there are large uncertainties in the unexplored space. Under such circumstances, adaptive design strategies that utilize a selector to suggest materials, which do not necessarily obey the trends of samples in the training data set, could prove to be a vital element for designing new materials. Our work also suggests that the adaptive design is quite forgiving of the quality of the regressor. In addition, the work can be generalized to the case where there are multiple objectives in the design. This is where more than one materials property needs to be optimized simultaneously, for example, an alloy with a small hysteresis to reduce fatigue but a large enough working temperature to be useful. In addition to the model uncertainties that originate from sampling the data and regressors, measurement errors (e.g., from processing conditions, inherent instrumentation limitations) need to be taken into account. The KG design selector, in its general form, can handle measurement uncertainties and can be applied here. Typical experimental materials problems have relatively small data sets and therefore the choice of regressor:selector combinations, as a function of the training data size, needs to be carefully evaluated as it is difficult to assess this a priori. It may be that some techniques will work better on certain data sets and for materials design problems with small training data sizes and vast unexplored search spaces, the regressor:selector combinations may need to be reexamined and retrained with every new data point for robustness.
Additional Information
How to cite this article: Balachandran, P. V. et al. Adaptive Strategies for Materials Design using Uncertainties. Sci. Rep. 6, 19660; doi: 10.1038/srep19660 (2016).
References
Bhadeshia, H. K. D. H. Neural Networks in Materials Science. ISIJ International 39, 966–979 (1999).
Balachandran, P. V., Broderick, S. R. & Rajan, K. Identifying the inorganic gene for high-temperature piezoelectric perovskites through statistical learning. Proceedings of the Royal Society A: Mathematical, Physical and Engineering Science 467, 2271–2290 (2011).
Saad, Y. et al. Data mining for materials: Computational experiments with AB compounds. Phys. Rev. B 85, 104104 (2012).
Pilania, G., Wang, C., Jiang, X., Rajasekaran, S. & Ramprasad, R. Accelerating materials property predictions using machine learning. Scientific Reports 3, 2810 (2013).
Seko, A., Maekawa, T., Tsuda, K. & Tanaka, I. Machine learning with systematic density-functional theory calculations: Application to melting temperatures of single- and binary-component solids. Phys. Rev. B 89, 054303 (2014).
Dey, P. et al. Informatics-aided bandgap engineering for solar materials. Computational Materials Science 83, 185–195 (2014).
Curtarolo, S. et al. The high-throughput highway to computational materials design. Nat Mater. 12, 191–201 (2013).
Jain, A. et al. Commentary: The Materials Project: A materials genome approach to accelerating materials innovation. APL Materials 1 (2013).
Saal, J., Kirklin, S., Aykol, M., Meredig, B. & Wolverton, C. Materials Design and Discovery with High-Throughput Density Functional Theory: The Open Quantum Materials Database (OQMD). JOM 65, 1501–1509 (2013).
Gautier, R. et al. Prediction and accelerated laboratory discovery of previously unknown 18-electron ABX compounds. Nat Chem 7, 308–316 (2015).
Jones, D. R., Schonlau, M. & Welch, W. J. Efficient global optimization of expensive black-box functions. J. of Global Optimization 13, 455–492 (1998).
Dougherty, E. R., Zollanvari, A. & Braga-Neto, U. M. The Illusion of Distribution-Free Small-Sample Classification in Genomics. Curr Genomics 12, 333–341 (2011).
Ghahramani, Z. Probabilistic machine learning and artificial intelligence. Nature 521, 452–459 (2015).
Frazier, P., Powell, W. & Dayanik, S. The knowledge-gradient policy for correlated normal beliefs. INFORMS Journal on Computing 21, 599–613 (2009).
Forrester, A. I. & Keane, A. J. Recent advances in surrogate-based optimization. Progress in Aerospace Sciences 45, 50–79 (2009).
Rasmussen, C. E. & Williams, C. K. I. Gaussian Processes for Machine Learning (MIT Press, 2006).
Pedregosa, F. et al. Scikit-learn: Machine Learning in Python. Journal of Machine Learning Research 12, 2825–2830 (2011).
Barsoum, M. W. & Radovic, M. Elastic and Mechanical Properties of the MAX Phases. Annual Review of Materials Research 41, 195–227 (2011).
Aryal, S., Sakidja, R., Barsoum, M. W. & Ching, W.-Y. A genomic approach to the stability, elastic and electronic properties of the MAX phases. physica status solidi (b) 251, 1480–1497 (2014).
Cover, M. F., Warschkow, O., Bilek, M. M. M. & McKenzie, D. R. A comprehensive survey of M2AX phase elastic properties. Journal of Physics: Condensed Matter 21, 305403 (2009).
Waber, J. T. & Cromer, D. T. Orbital Radii of Atoms and Ions. The Journal of Chemical Physics 42, 4116–4123 (1965).
Eberhart, M. Charge-Density-Shear-Moduli Relationships in Aluminum-Lithium Alloys. Phys. Rev. Lett. 87, 205503 (2001).
Wang, X. F., Jones, T. E., Li, W. & Zhou, Y. C. Extreme Poisson’s ratios and their electronic origin in B2 CsCl-type AB intermetallic compounds. Phys. Rev. B 85, 134108 (2012).
Gschneidner, K. et al. Influence of the electronic structure on the ductile behavior of B2 CsCl-type AB intermetallics. Acta Materialia 57, 5876–5881 (2009).
Balachandran, P. V., Theiler, J., Rondinelli, J. M. & Lookman, T. Materials Prediction via Classification Learning. Scientific Reports 5, 13285 (2015).
Powell, W. B. & Ryzhov, I. O. Optimal Learning (John Wiley & Sons, Inc., Hoboken, New Jersey, 2012).
Meredig, B. et al. Combinatorial screening for new materials in unconstrained composition space with machine learning. Phys. Rev. B 89, 094104 (2014).
Faber, F., Lindmaa, A., von Lilienfeld, O. A. & Armiento, R. Crystal structure representations for machine learning models of formation energies. International Journal of Quantum Chemistry 115, 1094–1101 (2015).
Mueller, T., Kusne, A. G. & Ramprasad, R. Machine learning in materials science: Recent progress and emerging applications . In Parrill, A. L. & Lipkowitz, K. B. (eds) Reviews in Computational Chemistry vol. 29 (Wiley, 2016).
Rajan, K. Materials Informatics: The Materials “Gene” and Big Data. Annual Review of Materials Research 45, 153–169 (2015).
Kalidindi, S. R. & De Graef, M. Materials Data Science: Current Status and Future Outlook. Annual Review of Materials Research 45, 171–193 (2015).
Liu, R. et al. A predictive machine learning approach for microstructure optimization and materials design. Scientific Reports 5, 11551 (2015).
Kalinin, S. V., Sumpter, B. G. & Archibald, R. K. Big-deep-smart data in imaging for guiding materials design. Nat Mater 14, 973–980 (2015).
Maggiora, G. M. On Outliers and Activity Cliffs: Why QSAR Often Disappoints. Journal of Chemical Information and Modeling 46, 1535–1535 (2006).
Schneider, G. et al. Voyages to the (un)known: adaptive design of bioactive compounds. Trends in Biotechnology 27, 18–26 (2009).
Acknowledgements
P.V.B., D.X., J.T., J.H. and T.L. acknowledge funding support from the Los Alamos National Laboratory (LANL) Laboratory Directed Research and Development (LDRD) DR (#20140013DR) on Materials Informatics.
Author information
Authors and Affiliations
Contributions
The informatics ideas were formulated by P.V.B, D.X, J.T, J.H. and T.L. P.V.B. built the data set, J.H. and J.T. performed the adaptive design. All authors analyzed the results and contributed to the writing of the paper.
Ethics declarations
Competing interests
The authors declare no competing financial interests.
Electronic supplementary material
Rights and permissions
This work is licensed under a Creative Commons Attribution 4.0 International License. The images or other third party material in this article are included in the article’s Creative Commons license, unless indicated otherwise in the credit line; if the material is not included under the Creative Commons license, users will need to obtain permission from the license holder to reproduce the material. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/
About this article
Cite this article
Balachandran, P., Xue, D., Theiler, J. et al. Adaptive Strategies for Materials Design using Uncertainties. Sci Rep 6, 19660 (2016). https://doi.org/10.1038/srep19660
Received:
Accepted:
Published:
DOI: https://doi.org/10.1038/srep19660
This article is cited by
-
Accelerating ultrashort pulse laser micromachining process comprehensive optimization using a machine learning cycle design strategy integrated with a physical model
Journal of Intelligent Manufacturing (2024)
-
Identification of high-dielectric constant compounds from statistical design
npj Computational Materials (2022)
-
A universal similarity based approach for predictive uncertainty quantification in materials science
Scientific Reports (2022)
-
Uncertainty-aware mixed-variable machine learning for materials design
Scientific Reports (2022)
-
Rapid design of secondary deformation-aging parameters for ultra-low Co content Cu-Ni-Co-Si-X alloy via Bayesian optimization machine learning
International Journal of Minerals, Metallurgy and Materials (2022)
Comments
By submitting a comment you agree to abide by our Terms and Community Guidelines. If you find something abusive or that does not comply with our terms or guidelines please flag it as inappropriate.