psc_NN (Machine Learning for Perovskite Solar Cells: An Open-Source Pipeline)¶
Notes
- Before starting training, please ensure that the dataset has been correctly placed in the
data/cleaned/directory. - Training and evaluation require additional dependencies, please install them using
pip install -r requirements.txt. - For optimal performance, it is recommended to use GPU for training.
| Pretrained Model | Metrics |
|---|---|
| solar_cell_pretrained.pdparams | RMSE: 3.91798 |
1. Background Introduction¶
Solar cells are key energy devices that directly convert light energy into electrical energy through the photovoltaic effect. Performance prediction is an important part of optimizing and designing solar cells. However, traditional performance prediction methods often rely on complex physical simulations and a large number of experimental tests, which are not only costly but also time-consuming, restricting the efficiency of research and development.
In recent years, the rapid development of deep learning and machine learning technologies has provided innovative methods for solar cell performance prediction. Through machine learning technology, development speed can be significantly accelerated while achieving prediction accuracy comparable to experimental results. Especially in the research of perovskite solar cells, the chemical composition and structural diversity of materials bring new challenges to model training. To solve this problem, researchers usually convert material properties into fixed-length feature vectors to adapt to machine learning models. Nevertheless, the feature representation design for different performance indicators still needs continuous optimization, and the interpretability requirements for model prediction results are also stricter.
In this study, by utilizing a comprehensive database (PDP) containing information on the properties of perovskite solar cells, we constructed and evaluated a variety of machine learning models including XGBoost and psc_nn, focusing on predicting short-circuit current density (Jsc). The results show that combining deep learning with hyperparameter optimization tools (such as Optuna) can significantly improve the efficiency of solar cell design, providing a more accurate and efficient solution for the research and development of new solar cells.
2. Model Principle¶
This chapter only briefly introduces the principle of the solar cell performance prediction model. For detailed theoretical derivation, please read Machine Learning for Perovskite Solar Cells: An Open-Source Pipeline.
The main idea of this method is to establish a nonlinear mapping relationship between spectral response data and short-circuit current density (Jsc) through an artificial neural network. The overall structure of the artificial neural network model is shown in the figure below:
This case uses a Multi-Layer Perceptron (MLP) as the basic model architecture, mainly including the following parts:
- Input layer: Receives 2808-dimensional spectral response data
- Hidden layer: 4-6 fully connected layers, the number of neurons in each layer is optimized by Optuna
- Activation function: Uses ReLU activation function to introduce nonlinear characteristics
- Output layer: Outputs the predicted Jsc value
In this way, we can automatically find the model configuration best suited for the current task and improve the prediction performance of the model.
3. Model Implementation¶
In this chapter, we explain how to implement the perovskite solar cell performance prediction model based on PaddleScience code. This case combines the Optuna framework for hyperparameter optimization and uses various built-in functional modules of PaddleScience. In order to quickly understand PaddleScience, only key steps such as model construction, constraint construction, and validator construction are described below, while other details please refer to API Documentation.
3.1 Dataset Introduction¶
The dataset used in this case contains Perovskite Database Project (PDP) data. The dataset is divided into the following parts:
- Training set:
- Feature data:
data/cleaned/training.csv - Label data:
data/cleaned/training_labels.csv - Validation set:
- Feature data:
data/cleaned/validation.csv - Label data:
data/cleaned/validation_labels.csv
To facilitate data processing, we implemented a helper function create_tensor_dict to create a tensor dictionary of inputs and labels:
| examples/perovskite_solar_cells/psc_nn.py | |
|---|---|
The data reading and preprocessing code is as follows:
For hyperparameter optimization, we further divide the training set into training set and validation set:
| examples/perovskite_solar_cells/psc_nn.py | |
|---|---|
3.2 Model Construction¶
This case uses ppsci.arch.MLP built in PaddleScience to build a multi-layer perceptron model. The hyperparameters of the model are optimized through the Optuna framework, mainly including:
- Number of network layers: 4-6 layers
- Number of neurons per layer: 10-input_dim/2
- Activation function: ReLU
- Input dimension: 2808 (spectral response data dimension)
- Output dimension: 1 (Jsc predicted value)
The model definition code is as follows:
3.3 Loss Function Design¶
Considering that different samples in the dataset may have different importance, we designed a weighted mean square error loss function. This function assigns higher weight to larger Jsc values to improve the prediction accuracy of the model on high-performance solar cells:
3.4 Constraint Construction¶
This case solves the problem based on data-driven methods, so SupervisedConstraint built in PaddleScience is used to construct supervised constraints. To reduce code duplication, we implemented the create_constraint function to create supervised constraints:
3.5 Validator Construction¶
In order to monitor the training situation of the model in real time, we implemented the create_validator function to create a validator:
3.6 Optimizer Construction¶
In order to unify the management of the creation of optimizer and learning rate scheduler, we implemented the create_optimizer function:
3.7 Model Training and Evaluation¶
During the training process, we use the functions encapsulated above to create data dictionaries, constraints, validators and optimizers:
| examples/perovskite_solar_cells/psc_nn.py | |
|---|---|
4. Complete Code¶
| examples/perovskite_solar_cells/psc_nn.py | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | |
