Skip to content

Commit ff6b367

Browse files
author
René Sass
authored
Merge pull request #6 from automl/development
Version 0.1
2 parents bab028c + 76c083b commit ff6b367

File tree

163 files changed

+8733
-9067
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+8733
-9067
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
build/*
2+
*cache*
3+
!*cache.py
4+
!*caches.py
5+
docs/*
6+
__pycache__
7+
*.rdb
8+
examples/logs/SMAC
9+
examples/logs/BOHB
10+
smac3-output*
11+
.DS_Store
12+
pending
13+
__init__.pyc

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# 0.1
2+
3+
## Features
4+
5+
- Multi-Objective is supported with flexible objective objects.
6+
- Groups: If plugin supports groups, multiple runs can be used.
7+
- Automatically find converter: DeepCAVE scans the given directory and selects a suitable converter (if available).
8+
- Recorder: Record your runs and save them directly as DeepCAVE files.
9+
- Matplotlib mode: Alternatively, plugins can output Matplotlib rendered plots.
10+
11+
12+
## Plugins
13+
14+
- StaticPlugin: Uses queue to process the result.
15+
- DynamicPlugin: Input changes are directly calculated.
16+
17+
- Overview: Shows meta and statistics.
18+
- Configurations: Shows configuration space and best found configuration.
19+
- Cost over Time: Shows how the cost changes over time.
20+
- Configuration Cube: Shows configurations as points in a cube.
21+
- Individual Conditional Expectation / Partial Dependency Plots: Shows how individual instances behave.
22+
- fANOVA: Shows Hyperparameter Importance.
23+
24+
25+
## Converters
26+
27+
- DeepCAVE
28+
- SMAC
29+
- BOHB (Beta)

MANIFEST.in

Lines changed: 0 additions & 12 deletions
This file was deleted.

Makefile

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
1-
# Minimal makefile for Sphinx documentation
2-
#
1+
install:
2+
pip install -r requirements.txt
33

4-
# You can set these variables from the command line, and also
5-
# from the environment for the first two.
6-
SPHINXOPTS ?=
7-
SPHINXBUILD ?= sphinx-build
8-
SOURCEDIR = docs
9-
BUILDDIR = build
10-
11-
# Put it first so that "make" without argument is like "make help".
12-
help:
13-
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14-
15-
.PHONY: help Makefile
16-
17-
# Catch-all target: route all unknown targets to Sphinx using the new
18-
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19-
%: Makefile
20-
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
4+
clean:
5+
rm -rf cache

Pipfile

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)