Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noamross/tracer
collect trace information from R optimization functions
https://github.com/noamross/tracer
Last synced: 10 days ago
JSON representation
collect trace information from R optimization functions
- Host: GitHub
- URL: https://github.com/noamross/tracer
- Owner: noamross
- Created: 2015-05-28T19:19:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-04T21:59:08.000Z (about 9 years ago)
- Last Synced: 2024-06-11T17:07:30.585Z (5 months ago)
- Language: R
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output:
md_document:
variant: markdown_github
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```A package to collect trace information from optimization functions. Very
early-stage and experimental.Use `nloptr_tr()` in place of `nloptr::nloptr()`. It will give the same
results but append the trace information to the result as an attribute, as well
as adding the class `traced`.Use `tracer(result)` to retrieve the trace information.
## TODO:
- General package infrastructure, documentation, testing, etc.
- Methods for other optimizers (**minqa**, **optim**, **optimx**)