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

Add documentation about carps usage #157

Merged
merged 3 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# v0.1.1

## Documentation
- Add example for the case when developing a standalone package either for a benchmark or for an optimizer (#157)

## Bug Fixes
- Fix HEBO integration (#149)
- Fix plotting and data gathering
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ guidelines for
and
[optimizers](https://automl.github.io/CARP-S/latest/contributing/contributing-an-optimizer/).

## Using your (external) optimizer or benchmark
In the case when you are developing your optimizer or benchmark in a standalone package, you can use carps without directly working in the carps repo.
For a custom benchmark we have an [example repo](https://github.com/automl/OptBench).
It shows how to use your own benchmark with carps optimizers.
For a custom optimizer check this [example repo](https://github.com/automl/CARP-S-example-optimizer).
Information is also available [here](https://automl.github.io/CARP-S/guides/using-carps/).

## Evaluation Results
For each scenario (blackbox, multi-fidelity, multi-objective and multi-fidelity-multi-objective) and set (dev and test), we run selected optimizers and provide the data.
Expand Down
11 changes: 11 additions & 0 deletions docs/guides/using-carps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Using Carps

In the case when you are developing your optimizer or benchmark in a standalone package, you can use carps without directly working in the carps repo.

## With your own benchmark
For a custom benchmark we have an [example repo](https://github.com/automl/OptBench).
It shows how to use your own benchmark with carps optimizers.

## With your own optimizer
When you develop your own optimizer, check this [example repo](https://github.com/automl/CARP-S-example-optimizer).
It shows how to use your own optimizer with carps benchmarks.
1 change: 1 addition & 0 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ nav:
- "guides/database.md"
- "guides/containers.md"
- "guides/large-scale-benchmarking.md"
- "guides/using-carps.md"
- Commands: "commands.md"
- Contributing:
- "contributing/index.md"
Expand Down