instancespace 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- instancespace/__init__.py +38 -0
- instancespace/_serialisers.py +733 -0
- instancespace/data/__init__.py +6 -0
- instancespace/data/default_options.py +60 -0
- instancespace/data/metadata.py +119 -0
- instancespace/data/model.py +493 -0
- instancespace/data/options.py +785 -0
- instancespace/example.ipynb +127 -0
- instancespace/instance_space.py +380 -0
- instancespace/model.py +171 -0
- instancespace/scripting/__init__.py +8 -0
- instancespace/scripting/script_disc.py +64 -0
- instancespace/scripting/script_fcn.py +207 -0
- instancespace/stage_builder.py +414 -0
- instancespace/stage_runner.py +284 -0
- instancespace/stages/__init__.py +28 -0
- instancespace/stages/cloister.py +348 -0
- instancespace/stages/pilot.py +565 -0
- instancespace/stages/prelim.py +861 -0
- instancespace/stages/preprocessing.py +365 -0
- instancespace/stages/pythia.py +884 -0
- instancespace/stages/sifted.py +1058 -0
- instancespace/stages/stage.py +52 -0
- instancespace/stages/trace.py +1020 -0
- instancespace/utils/__init__.py +1 -0
- instancespace/utils/filter.py +157 -0
- instancespace-0.2.0.dist-info/LICENSE +674 -0
- instancespace-0.2.0.dist-info/METADATA +192 -0
- instancespace-0.2.0.dist-info/RECORD +30 -0
- instancespace-0.2.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""Contains modules for instance space analysis.
|
|
2
|
+
|
|
3
|
+
The module consists of various algorithms to perform instance space analysis.
|
|
4
|
+
- preprocessing: Prepare data to be used by stages.
|
|
5
|
+
- prelim: Performing preliminary data processing.
|
|
6
|
+
- sifted: Perform feature selection and optimization in data analysis.
|
|
7
|
+
- pilot: Obtaining a two-dimensional projection.
|
|
8
|
+
- pythia: Perform algorithm selection and performance evaluation using SVM.
|
|
9
|
+
- cloister: Perform correlation analysis to estimate a boundary for the space.
|
|
10
|
+
- trace: Calculating the algorithm footprints.
|
|
11
|
+
|
|
12
|
+
Perform instance space analysis on given dataset and configuration.
|
|
13
|
+
|
|
14
|
+
Construct an instance space from data and configuration files located in a specified
|
|
15
|
+
directory. The instance space is represented as a Model object, which encapsulates the
|
|
16
|
+
analytical results and metadata of the instance space analysis.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from . import data, instance_space, stages
|
|
20
|
+
from .data import metadata, options
|
|
21
|
+
from .data.metadata import Metadata
|
|
22
|
+
from .data.options import InstanceSpaceOptions
|
|
23
|
+
from .instance_space import InstanceSpace
|
|
24
|
+
from .model import Model
|
|
25
|
+
|
|
26
|
+
__all__ = [
|
|
27
|
+
"InstanceSpace",
|
|
28
|
+
"InstanceSpaceOptions",
|
|
29
|
+
"Metadata",
|
|
30
|
+
"Model",
|
|
31
|
+
"options",
|
|
32
|
+
"metadata",
|
|
33
|
+
"data",
|
|
34
|
+
"stages",
|
|
35
|
+
"instance_space",
|
|
36
|
+
"stage_builder",
|
|
37
|
+
"stage_runner",
|
|
38
|
+
]
|