# Decoder Settings ## Neural Network ```json { "decoder": { "trained": false, "data_path": null, "differential": false, "model_params": { "input": {}, "layers": [ { "name": "Linear", "size": 100, "activation": "relu" }, { "name": "Output" } ], "compile": { "optimizer": "adam", "loss": "mse" } }, "feature_norm_type": "standard", "mu": null, "sigma": null, "offline_params": { "fit": { "epochs": 10, "batch_size": 32 } }, "grad_update_params": { "epochs": 1 }, "type": "NEURAL_NETWORK" } } ```