Statistics
AbstractStatsCalculator
¶
Bases: ABC
Abstract class that defines the interface for all the calculators object and the methods to compute the statistics.
Source code in openqdc/datasets/statistics.py
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 |
|
root
property
¶
Path to the dataset folder
__init__(name, energy_type=None, force_recompute=False, energies=None, n_atoms=None, atom_species=None, position_idx_range=None, e0_matrix=None, atom_charges=None, forces=None)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
Name of the dataset for saving and loading. |
required | |
energy_type |
Type of the energy for the computation of the statistics. Used for loading and saving. |
None
|
|
force_recompute |
Flag to force the recomputation of the statistics |
False
|
|
energies |
n Energies of the dataset |
None
|
|
n_atoms |
Number of atoms in the dataset |
None
|
|
atom_species |
Atomic species of the dataset |
None
|
|
position_idx_range |
n Position index range of the dataset |
None
|
|
e0_matrix |
Isolated atom energies matrix of the dataset |
None
|
|
atom_charges |
Atomic charges of the dataset |
None
|
|
forces |
Forces of the dataset |
None
|
Source code in openqdc/datasets/statistics.py
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 |
|
attempt_load()
¶
Load precomputed statistics file and return the success of the operation
Source code in openqdc/datasets/statistics.py
271 272 273 274 275 276 277 278 279 280 281 |
|
compute()
abstractmethod
¶
Abstract method to compute the statistics. Must return a StatisticsResults object and be implemented in all the childs
Source code in openqdc/datasets/statistics.py
256 257 258 259 260 261 262 263 |
|
from_openqdc_dataset(dataset, recompute=False)
classmethod
¶
Create a calculator object from a dataset object.
Source code in openqdc/datasets/statistics.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
|
run(state)
¶
Main method to run the calculator. Setup the dependencies from the state dictionary Check if the statistics are already computed and load them or recompute them Save the statistics in the correct folder
state
dictionary containing the state of the calculator
Source code in openqdc/datasets/statistics.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
|
save_statistics()
¶
Save statistics file to the dataset folder as a pkl file
Source code in openqdc/datasets/statistics.py
265 266 267 268 269 |
|
write_state(update)
¶
Write/update the state dictionary with the update dictionary
update
dictionary containing the update to the state
Source code in openqdc/datasets/statistics.py
295 296 297 298 299 300 301 302 |
|
EnergyStatistics
dataclass
¶
Bases: StatisticsResults
Dataclass for energy related statistics
Source code in openqdc/datasets/statistics.py
41 42 43 44 45 46 47 48 |
|
ForceStatistics
dataclass
¶
Bases: StatisticsResults
Dataclass for force statistics
Source code in openqdc/datasets/statistics.py
51 52 53 54 55 56 57 58 59 60 61 |
|
ForcesCalculatorStats
¶
Bases: AbstractStatsCalculator
Forces statistics calculator class
Source code in openqdc/datasets/statistics.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
|
FormationEnergyInterface
¶
Bases: AbstractStatsCalculator
, ABC
Formation Energy interface calculator class. Define the use of the dependency formation_energy in the compute method
Source code in openqdc/datasets/statistics.py
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 |
|
FormationEnergyStats
¶
Bases: FormationEnergyInterface
Formation Energy calculator class.
Source code in openqdc/datasets/statistics.py
402 403 404 405 406 407 408 409 410 |
|
PerAtomFormationEnergyStats
¶
Bases: FormationEnergyInterface
Per atom Formation Energy calculator class.
Source code in openqdc/datasets/statistics.py
413 414 415 416 417 418 419 420 421 |
|
StatisticManager
¶
Manager class that automatically handle the shared state between the statistic calculators
Source code in openqdc/datasets/statistics.py
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 |
|
state: Dict
property
¶
Return the dictionary state of the manager
Returns:
Type | Description |
---|---|
Dict
|
State of the StatisticManager |
__init__(dataset, recompute=False, *statistic_calculators)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dataset |
openqdc.datasets.base.BaseDataset The dataset object to compute the statistics |
required | |
recompute |
bool
|
Flag to recompute the statistics |
False
|
*statistic_calculators |
AbstractStatsCalculator
|
List of statistic calculators to run |
()
|
Source code in openqdc/datasets/statistics.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
|
get_results(as_dict=False)
¶
Aggregate results from all the calculators
Parameters:
Name | Type | Description | Default |
---|---|---|---|
as_dict |
bool
|
Flag to return the results as a dictionary |
False
|
Source code in openqdc/datasets/statistics.py
136 137 138 139 140 141 142 143 144 145 146 147 |
|
get_state(key=None)
¶
Return the value of the key in the state dictionary
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
Optional[str]
|
str, default = None |
None
|
Returns: the value of the key in the state dictionary or the whole state dictionary if key is None
Source code in openqdc/datasets/statistics.py
109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
has_state(key)
¶
Check is state has key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
Key to check in the state dictionary |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the key is in the state dictionary |
Source code in openqdc/datasets/statistics.py
123 124 125 126 127 128 129 130 131 132 133 134 |
|
reset_results()
¶
Reset the results dictionary
Source code in openqdc/datasets/statistics.py
103 104 105 106 107 |
|
reset_state()
¶
Reset the state dictionary
Source code in openqdc/datasets/statistics.py
97 98 99 100 101 |
|
run_calculators()
¶
Run the saved calculators and save the results in the manager
Source code in openqdc/datasets/statistics.py
149 150 151 152 153 154 155 156 |
|
StatisticsResults
¶
Parent class to statistics results to provide general methods.
Source code in openqdc/datasets/statistics.py
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 |
|
to_dict()
¶
Convert the class to a dictionary
Returns:
Type | Description |
---|---|
Dict
|
Dictionary representation of the class |
Source code in openqdc/datasets/statistics.py
19 20 21 22 23 24 25 26 |
|
transform(func)
¶
Apply a function to all the attributes of the class
Parameters:
Name | Type | Description | Default |
---|---|---|---|
func |
Callable
|
Function to apply to the attributes |
required |
Source code in openqdc/datasets/statistics.py
28 29 30 31 32 33 34 35 36 37 38 |
|
TotalEnergyStats
¶
Bases: AbstractStatsCalculator
Total Energy statistics calculator class
Source code in openqdc/datasets/statistics.py
348 349 350 351 352 353 354 355 356 357 |
|