Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix example in docs and add documentation #33

Merged
merged 1 commit into from
May 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ petabProblem = createPEtabODEProblem(bachmannModel,

After defining the parameter vector `θ`, you can compute the cost, gradient, and Hessian with the following code:

```julia
θ = petabProblem.θ_nominalT
```

```julia
# We only support in-place Hessian and gradients
∇f = zeros(length(θ))
Expand Down Expand Up @@ -75,6 +79,8 @@ Using this functionality, you can perform parameter estimation using optimizatio
* Handling pre-equilibration and pre-simulation conditions.
* Support for models with discrete events and logical operations.

## Documentation
Documentation and tutorials are available at https://sebapersson.github.io/PEtab.jl

## Development team

Expand Down