Skip to content

Commit

Permalink
Update issue-template.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KEggensperger authored Oct 1, 2019
1 parent 619f72b commit 1f47969
Showing 1 changed file with 4 additions and 22 deletions.
26 changes: 4 additions & 22 deletions .github/ISSUE_TEMPLATE/issue-template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Issue Template
about: Describe this issue template's purpose here.
about: General template issues
labels:

---
Expand All @@ -12,34 +12,16 @@ Please file an issue for bug reports (label as `bug`), usage questions (label as
<!-- Instructions For Filing a Bug: https://github.com/automl/SMAC3/blob/master/CONTRIBUTING.md -->

#### Description
<!-- Example: error: argument --initial-incumbent/--initial_incumbent: invalid choice: 'sobol' -->
<!-- Describe what you wanted to do -->

#### Steps/Code to Reproduce
<!--
Example:
```
from smac.facade.func_facade import fmin_smac
def rosenbrock_2d(x):
x1 = x[0]
x2 = x[1]
val = 100. * (x2 - x1 ** 2.) ** 2. + (1 - x1) ** 2.
return val
x, cost, _ = fmin_smac(func=rosenbrock_2d,
x0=[-3, -4],
bounds=[(-5, 5), (-5, 5)],
maxfun=325,
scenario_args={"initial_incumbent": "sobol"},
rng=3)
```
If the code is too long, feel free to put it in a public gist and link
Please provide us with code to reproduce your issue. If the code is too long, feel free to put it in a public gist and link
it in the issue: https://gist.github.com
-->

#### Expected Results
<!-- Example: No error is thrown. Please paste or describe the expected results.-->
<!-- Please paste or describe the expected results.-->

#### Actual Results
<!-- Please paste or specifically describe the actual output or traceback. -->
Expand Down

0 comments on commit 1f47969

Please sign in to comment.