File: bug_report.md

package info (click to toggle)
scikit-optimize 0.10.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,736 kB
  • sloc: python: 10,668; javascript: 438; makefile: 139; sh: 6
file content (51 lines) | stat: -rw-r--r-- 1,180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Bug report
about: Create a report to help us reproduce and correct the bug
title: ''
labels: ''
assignees: ''
---
<!--
Please search through the past issues to see whether your issue
has already been addressed.
-->

#### Bug description
<!-- Clearly and concisely describe the issue. -->


#### Steps/code to reproduce
<!--
Please add a minimal code example that we can run to reproduce the error.
Be as succinct as possible, do not depend on external data. In short,
we're going to copy-paste your code, and we expect to get the same
result as you.
-->

```py
Sample code goes here
```


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


#### Actual results
<!-- Please paste or specifically describe the actual output or (full) traceback. -->


#### Context
<!--
Please run the following snippet and paste the output below.
for module in ('skopt', 'numpy', 'scipy', 'sklearn'):
    print(module, __import__(module).__version__)
import platform; print(platform.platform())
import sys; print("Python", sys.version)
-->


<!--
Use the Preview to ensure the report looks as it should.
Thanks for contributing!
-->