Design¶
-
class
citrination_client.models.design.process_status.ProcessStatus(result, progress, status, messages=None)¶ The status of an in progress process executing on Citrination.
-
__init__(result, progress, status, messages=None)¶ Constructor.
- Parameters
result (any) – The result of the process
progress (int) – The progress of the process as as percentage
status (str) – The status string for the process
messages (list of str) – A list of messages representing the steps the process has already progressed through
-
accepted()¶
-
finished()¶
-
killed()¶
-
messages¶
-
progress¶
-
result¶
-
status¶
-
uuid¶
-
-
class
citrination_client.models.design.design_results.DesignResults(best_materials, next_experiments)¶ The result of a design run. Consists of a set of dictionaries representing the candidates which are the best materials according to the target and the constraints and a set of dictionaries representing candidates which would be the most useful in improving the quality of the model.
-
__init__(best_materials, next_experiments)¶ Constructor.
- Parameters
best_materials (list of dictionaries) – An array of candidate dictionaries
next_experiments (list of dictionaries) – An array of candidate dictionaries
-
best_materials¶
-
next_experiments¶
-