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.
@@ -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
+ ]