# A model configuration is defined in a yaml file. To read this file:
model_config = gemf.load_configuration('path/to/model_configuration.yml')
# To solve the time integration of this model call:
forward_results = gemf.run_forward_model(model_config)
# To also solve the inverse problem as defined in the configuration, call:
inverse_results = gemf.run_inverse_model(model_config)
# To plot the results call
gemf.plot_results_summary(inverse_results)
import gemf as