Skip to content

Commit

Permalink
Update README and remove pandas in basic
Browse files Browse the repository at this point in the history
  • Loading branch information
kAIto47802 committed Aug 9, 2024
1 parent 484861e commit 359aaf7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ if __name__ == "__main__":
> In this example repository, you can also find the examples for the following scenarios:
> 1. [Objective function with additional arguments](./sklearn/sklearn_additional_args.py), which is useful when you would like to pass arguments besides `trial` to your objective function.
>
> 2. [Manually provide trials with sampler](./basic_and_faq_usages/enqueue_trial.py), which is useful when you would like to force certain parameters to be sampled.
> 2. [Manually provide trials with sampler](./basic/enqueue_trial.py), which is useful when you would like to force certain parameters to be sampled.
>
> 3. [Callback to control the termination criterion of study](./basic_and_faq_usages/max_trials_callback.py), which is useful when you would like to define your own termination criterion other than `n_trials` or `timeout`.
> 3. [Callback to control the termination criterion of study](./basic/max_trials_callback.py), which is useful when you would like to define your own termination criterion other than `n_trials` or `timeout`.
## Examples for Diverse Problem Setups

Expand All @@ -43,9 +43,9 @@ Here are the URLs to the example codeblocks to the corresponding setups.
<details open>
<summary>Simple Black-box Optimization</summary>

* [Quadratic Function](./basic_and_faq_usages/quadratic_simple.py)
* [Quadratic Multi-Objective Function](./basic_and_faq_usages/quadratic_simple_multi_objective.py)
* [Quadratic Function with Constraints](./basic_and_faq_usages/quadratic_simple_constraint.py)
* [Quadratic Function](./basic/quadratic.py)
* [Quadratic Multi-Objective Function](./basic/quadratic_multi_objective.py)
* [Quadratic Function with Constraints](./basic/quadratic_constraint.py)
</details>

<details open>
Expand Down Expand Up @@ -93,7 +93,7 @@ If you are looking for an example of reinforcement learning, please take a look

The following example demonstrates how to implement pruning logic with Optuna.

* [Simple pruning (scikit-learn)](./basic_and_faq_usages/simple_pruning.py)
* [Simple pruning (scikit-learn)](./basic/pruning.py)

In addition, integration modules are available for the following libraries, providing simpler interfaces to utilize pruning.

Expand Down
1 change: 0 additions & 1 deletion basic/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
optuna
scikit-learn>=0.19.0
pandas

0 comments on commit 359aaf7

Please sign in to comment.