sierra-research 1.2.22__py3-none-any.whl → 1.3.5__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.
- sierra/__init__.py +1 -13
- sierra/core/__init__.py +1 -13
- sierra/core/cmdline.py +2 -14
- sierra/core/config.py +3 -14
- sierra/core/experiment/__init__.py +1 -13
- sierra/core/experiment/bindings.py +1 -13
- sierra/core/experiment/definition.py +1 -13
- sierra/core/experiment/spec.py +1 -13
- sierra/core/experiment/xml.py +1 -13
- sierra/core/generators/controller_generator_parser.py +1 -13
- sierra/core/generators/exp_creator.py +1 -13
- sierra/core/generators/exp_generators.py +1 -13
- sierra/core/generators/generator_factory.py +1 -13
- sierra/core/graphs/heatmap.py +1 -13
- sierra/core/graphs/scatterplot2D.py +1 -13
- sierra/core/graphs/stacked_line_graph.py +10 -19
- sierra/core/graphs/stacked_surface_graph.py +1 -13
- sierra/core/graphs/summary_line_graph.py +1 -13
- sierra/core/hpc/__init__.py +1 -13
- sierra/core/hpc/cmdline.py +1 -13
- sierra/core/logging.py +7 -28
- sierra/core/models/__init__.py +1 -13
- sierra/core/models/graphs.py +1 -14
- sierra/core/models/interface.py +1 -13
- sierra/core/pipeline/__init__.py +1 -13
- sierra/core/pipeline/pipeline.py +1 -13
- sierra/core/pipeline/stage1/__init__.py +0 -1
- sierra/core/pipeline/stage1/pipeline_stage1.py +1 -13
- sierra/core/pipeline/stage2/__init__.py +0 -1
- sierra/core/pipeline/stage2/exp_runner.py +5 -17
- sierra/core/pipeline/stage2/pipeline_stage2.py +1 -13
- sierra/core/pipeline/stage3/__init__.py +0 -1
- sierra/core/pipeline/stage3/imagizer.py +3 -14
- sierra/core/pipeline/stage3/pipeline_stage3.py +1 -13
- sierra/core/pipeline/stage3/run_collator.py +1 -13
- sierra/core/pipeline/stage3/statistics_calculator.py +1 -13
- sierra/core/pipeline/stage4/__init__.py +2 -3
- sierra/core/pipeline/stage4/graph_collator.py +1 -13
- sierra/core/pipeline/stage4/inter_exp_graph_generator.py +1 -13
- sierra/core/pipeline/stage4/intra_exp_graph_generator.py +1 -13
- sierra/core/pipeline/stage4/model_runner.py +1 -13
- sierra/core/pipeline/stage4/pipeline_stage4.py +1 -13
- sierra/core/pipeline/stage4/rendering.py +1 -13
- sierra/core/pipeline/stage4/yaml_config_loader.py +1 -13
- sierra/core/pipeline/stage5/__init__.py +0 -1
- sierra/core/pipeline/stage5/inter_scenario_comparator.py +1 -13
- sierra/core/pipeline/stage5/intra_scenario_comparator.py +1 -14
- sierra/core/pipeline/stage5/pipeline_stage5.py +1 -13
- sierra/core/platform.py +1 -13
- sierra/core/plugin.py +1 -13
- sierra/core/plugin_manager.py +1 -13
- sierra/core/root_dirpath_generator.py +6 -14
- sierra/core/ros1/__init__.py +1 -13
- sierra/core/ros1/callbacks.py +1 -13
- sierra/core/ros1/cmdline.py +1 -13
- sierra/core/ros1/generators.py +1 -13
- sierra/core/ros1/variables/__init__.py +1 -13
- sierra/core/ros1/variables/exp_setup.py +1 -13
- sierra/core/startup.py +6 -17
- sierra/core/stat_kernels.py +1 -13
- sierra/core/storage.py +1 -13
- sierra/core/types.py +1 -13
- sierra/core/utils.py +1 -13
- sierra/core/variables/__init__.py +1 -13
- sierra/core/variables/base_variable.py +1 -13
- sierra/core/variables/batch_criteria.py +1 -13
- sierra/core/variables/exp_setup.py +1 -13
- sierra/core/variables/population_size.py +1 -13
- sierra/core/variables/variable_density.py +1 -13
- sierra/core/vector.py +1 -13
- sierra/main.py +25 -14
- sierra/plugins/__init__.py +1 -13
- sierra/plugins/hpc/__init__.py +1 -13
- sierra/plugins/hpc/adhoc/__init__.py +1 -13
- sierra/plugins/hpc/adhoc/plugin.py +1 -13
- sierra/plugins/hpc/local/__init__.py +1 -13
- sierra/plugins/hpc/local/plugin.py +1 -13
- sierra/plugins/hpc/pbs/__init__.py +1 -13
- sierra/plugins/hpc/pbs/plugin.py +1 -13
- sierra/plugins/hpc/slurm/__init__.py +1 -13
- sierra/plugins/hpc/slurm/plugin.py +1 -13
- sierra/plugins/platform/__init__.py +1 -13
- sierra/plugins/platform/argos/__init__.py +1 -13
- sierra/plugins/platform/argos/cmdline.py +1 -13
- sierra/plugins/platform/argos/generators/__init__.py +1 -13
- sierra/plugins/platform/argos/generators/platform_generators.py +1 -13
- sierra/plugins/platform/argos/plugin.py +7 -15
- sierra/plugins/platform/argos/variables/__init__.py +1 -13
- sierra/plugins/platform/argos/variables/arena_shape.py +1 -13
- sierra/plugins/platform/argos/variables/cameras.py +1 -13
- sierra/plugins/platform/argos/variables/constant_density.py +1 -13
- sierra/plugins/platform/argos/variables/exp_setup.py +1 -13
- sierra/plugins/platform/argos/variables/physics_engines.py +1 -13
- sierra/plugins/platform/argos/variables/population_constant_density.py +1 -13
- sierra/plugins/platform/argos/variables/population_size.py +1 -13
- sierra/plugins/platform/argos/variables/population_variable_density.py +1 -13
- sierra/plugins/platform/argos/variables/rendering.py +1 -13
- sierra/plugins/platform/ros1gazebo/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/cmdline.py +1 -13
- sierra/plugins/platform/ros1gazebo/generators/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/generators/platform_generators.py +1 -13
- sierra/plugins/platform/ros1gazebo/plugin.py +1 -13
- sierra/plugins/platform/ros1gazebo/variables/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/variables/population_size.py +1 -13
- sierra/plugins/platform/ros1robot/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/cmdline.py +1 -13
- sierra/plugins/platform/ros1robot/generators/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/generators/platform_generators.py +1 -13
- sierra/plugins/platform/ros1robot/plugin.py +1 -13
- sierra/plugins/platform/ros1robot/variables/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/variables/population_size.py +1 -13
- sierra/plugins/robot/__init__.py +1 -13
- sierra/plugins/robot/turtlebot3/__init__.py +1 -13
- sierra/plugins/robot/turtlebot3/plugin.py +1 -13
- sierra/plugins/storage/__init__.py +1 -13
- sierra/plugins/storage/csv/__init__.py +1 -13
- sierra/plugins/storage/csv/plugin.py +1 -13
- sierra/version.py +3 -14
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man1/sierra-cli.1 +6 -5
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-examples.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-exec-envs.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-glossary.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-platforms.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-usage.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra.7 +1 -1
- sierra_research-1.3.5.dist-info/LICENSE +18 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/METADATA +10 -16
- sierra_research-1.3.5.dist-info/RECORD +133 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/WHEEL +1 -1
- sierra_research-1.2.22.dist-info/LICENSE.md +0 -674
- sierra_research-1.2.22.dist-info/RECORD +0 -133
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/entry_points.txt +0 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/top_level.txt +0 -0
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Plugin for reading from CSV files when processing experimental run results.
|
17
5
|
|
18
6
|
"""
|
sierra/version.py
CHANGED
@@ -1,23 +1,12 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""The one and only place where the current SIERRA version is recorded."""
|
5
|
+
|
17
6
|
# Core packages
|
18
7
|
|
19
8
|
# 3rd party packages
|
20
9
|
|
21
10
|
# Project packages
|
22
11
|
|
23
|
-
__version__ = "1.
|
12
|
+
__version__ = "1.3.5"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "SIERRA-CLI" "1" "
|
3
|
+
.TH "SIERRA-CLI" "1" "Jun 08, 2023" "1.3.5" "SIERRA"
|
4
4
|
.SH NAME
|
5
5
|
sierra-cli \- The SIERRA Command Line Interface (CLI).
|
6
6
|
.
|
@@ -60,10 +60,11 @@ usage: sphinx\-build [\-h] [\-\-project PROJECT] [\-\-version]
|
|
60
60
|
[\-\-exp\-overwrite] [\-\-sierra\-root dirpath]
|
61
61
|
[\-\-batch\-criteria [<category>.<definition>,...]
|
62
62
|
[[<category>.<definition>,...] ...]]
|
63
|
-
[\-\-pipeline [PIPELINE ...]]
|
64
|
-
[\-\-
|
65
|
-
[\-\-
|
66
|
-
[\-\-plot\-
|
63
|
+
[\-\-pipeline [PIPELINE [PIPELINE ...]]]
|
64
|
+
[\-\-exp\-range EXP_RANGE] [\-\-platform\-vc]
|
65
|
+
[\-\-processing\-serial] [\-\-n\-runs N_RUNS] [\-\-skip\-collate]
|
66
|
+
[\-\-plot\-log\-xscale] [\-\-plot\-enumerated\-xscale]
|
67
|
+
[\-\-plot\-log\-yscale]
|
67
68
|
[\-\-plot\-regression\-lines PLOT_REGRESSION_LINES]
|
68
69
|
[\-\-plot\-primary\-axis PLOT_PRIMARY_AXIS]
|
69
70
|
[\-\-plot\-large\-text] [\-\-plot\-transpose\-graphs]
|
{sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-examples.7
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "SIERRA-EXAMPLES" "7" "
|
3
|
+
.TH "SIERRA-EXAMPLES" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
|
4
4
|
.SH NAME
|
5
5
|
sierra-examples \- Examples of SIERRA usage. These examples all assume that you have successfully set up SIERRA with a project of your choice.
|
6
6
|
.
|
{sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-platforms.7
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "SIERRA-PLATFORMS" "7" "
|
3
|
+
.TH "SIERRA-PLATFORMS" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
|
4
4
|
.SH NAME
|
5
5
|
sierra-platforms \- The platforms SIERRA supports, and platform-specific Batch Criteria.
|
6
6
|
.
|
{sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-usage.7
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "SIERRA-USAGE" "7" "
|
3
|
+
.TH "SIERRA-USAGE" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
|
4
4
|
.SH NAME
|
5
5
|
sierra-usage \- How to use SIERRA. This covers all non-command line interface aspects.
|
6
6
|
.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Copyright 2022 John Harwell
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
7
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
8
|
+
subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
15
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
16
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
17
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,17 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sierra-research
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.5
|
4
4
|
Summary: Automation framework for the scientific method in AI research
|
5
5
|
Home-page: https://github.com/jharwell/sierra
|
6
6
|
Author: John Harwell
|
7
7
|
Author-email: john.r.harwell@gmail.com
|
8
|
-
License:
|
8
|
+
License: MIT
|
9
9
|
Keywords: research,automation,robotics,agent-based modeling,reproducibility,reusability
|
10
10
|
Platform: linux
|
11
11
|
Platform: osx
|
12
12
|
Classifier: Programming Language :: Python :: 3.8
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
14
|
-
Classifier: License :: OSI Approved ::
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
15
15
|
Classifier: Environment :: Console
|
16
16
|
Classifier: Operating System :: MacOS :: MacOS X
|
17
17
|
Classifier: Operating System :: POSIX :: Linux
|
@@ -21,7 +21,7 @@ Classifier: Topic :: Scientific/Engineering
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
22
22
|
Requires-Python: >=3.8
|
23
23
|
Description-Content-Type: text/x-rst
|
24
|
-
License-File: LICENSE
|
24
|
+
License-File: LICENSE
|
25
25
|
Requires-Dist: pyyaml
|
26
26
|
Requires-Dist: pandas
|
27
27
|
Requires-Dist: numpy
|
@@ -30,16 +30,18 @@ Requires-Dist: sympy
|
|
30
30
|
Requires-Dist: psutil
|
31
31
|
Requires-Dist: distro
|
32
32
|
Requires-Dist: netifaces
|
33
|
+
Requires-Dist: haggis
|
33
34
|
Requires-Dist: coloredlogs
|
34
35
|
Requires-Dist: implements
|
35
36
|
Requires-Dist: retry
|
36
37
|
Provides-Extra: devel
|
37
|
-
Requires-Dist: pylint ; extra == 'devel'
|
38
|
+
Requires-Dist: pylint (==2.14.5) ; extra == 'devel'
|
38
39
|
Requires-Dist: pytype ; extra == 'devel'
|
39
40
|
Requires-Dist: pydocstyle ; extra == 'devel'
|
40
41
|
Requires-Dist: xenon ; extra == 'devel'
|
41
42
|
Requires-Dist: flake8 ; extra == 'devel'
|
42
43
|
Requires-Dist: nox ; extra == 'devel'
|
44
|
+
Requires-Dist: psutil ; extra == 'devel'
|
43
45
|
Requires-Dist: pytest ; extra == 'devel'
|
44
46
|
Requires-Dist: pytest-cov ; extra == 'devel'
|
45
47
|
Requires-Dist: mypy ; extra == 'devel'
|
@@ -50,7 +52,7 @@ Requires-Dist: mypy-runner ; extra == 'devel'
|
|
50
52
|
Requires-Dist: build ; extra == 'devel'
|
51
53
|
Requires-Dist: twine ; extra == 'devel'
|
52
54
|
Requires-Dist: setuptools ; extra == 'devel'
|
53
|
-
Requires-Dist: sphinx ; extra == 'devel'
|
55
|
+
Requires-Dist: sphinx (==4.4.0) ; extra == 'devel'
|
54
56
|
Requires-Dist: docutils (==0.16) ; extra == 'devel'
|
55
57
|
Requires-Dist: sphinx-rtd-theme ; extra == 'devel'
|
56
58
|
Requires-Dist: sphinx-argparse ; extra == 'devel'
|
@@ -76,13 +78,6 @@ SIERRA (reSearch pIpEline for Reproducibility, Reusability, and Automation)
|
|
76
78
|
.. |linux-supported| image:: https://svgshare.com/i/Zhy.svg
|
77
79
|
.. |osx-supported| image:: https://svgshare.com/i/ZjP.svg
|
78
80
|
|
79
|
-
..
|
80
|
-
.. image:: https://img.shields.io/badge/python-3.8-blue.svg
|
81
|
-
:target: https://www.python.org/downloads/release/python-380/
|
82
|
-
|
83
|
-
.. image:: https://img.shields.io/badge/python-3.9-blue.svg
|
84
|
-
:target: https://www.python.org/downloads/release/python-390/
|
85
|
-
|
86
81
|
.. |ci-integration-master| image:: https://github.com/jharwell/sierra/actions/workflows/integration-all.yml/badge.svg?branch=master
|
87
82
|
.. |ci-analysis-master| image:: https://github.com/jharwell/sierra/actions/workflows/static-analysis.yml/badge.svg?branch=master
|
88
83
|
.. |ci-coverage-master| image:: https://coveralls.io/repos/github/jharwell/sierra/badge.svg?branch=master
|
@@ -91,14 +86,13 @@ SIERRA (reSearch pIpEline for Reproducibility, Reusability, and Automation)
|
|
91
86
|
.. |ci-analysis-devel| image:: https://github.com/jharwell/sierra/actions/workflows/static-analysis.yml/badge.svg?branch=devel
|
92
87
|
.. |ci-coverage-devel| image:: https://coveralls.io/repos/github/jharwell/sierra/badge.svg?branch=devel
|
93
88
|
|
94
|
-
.. |license| image:: https://img.shields.io/badge/License-
|
95
|
-
:target: https://www.gnu.org/licenses/gpl-3.0
|
89
|
+
.. |license| image:: https://img.shields.io/badge/License-MIT-blue.svg
|
96
90
|
|
97
91
|
.. |doi| image:: https://zenodo.org/badge/125774567.svg
|
98
92
|
:target: https://zenodo.org/badge/latestdoi/125774567
|
99
93
|
|
100
94
|
.. |docs| image:: https://readthedocs.org/projects/sierra/badge/?version=master
|
101
|
-
:target: https://readthedocs.
|
95
|
+
:target: https://sierra.readthedocs.io/en/master/
|
102
96
|
|
103
97
|
.. |maintenance| image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg
|
104
98
|
:target: https://gitHub.com/jharwell/sierra/graphs/commit-activity
|
@@ -0,0 +1,133 @@
|
|
1
|
+
sierra/__init__.py,sha256=LrL9-6GqsT0Lvo6jb54x4m-DL1NywTXG8JKSrYis7Xo,186
|
2
|
+
sierra/main.py,sha256=K46LsG16cSqTMfNiT3vSSF3SLh5BjAUPVqPjZ6A2Oxs,6618
|
3
|
+
sierra/version.py,sha256=AbRCxPY1PXun3NLlT2T9qZMwI6IDu3bMujuHNw9h38U,243
|
4
|
+
sierra/core/__init__.py,sha256=IwACyV8LoLuIx3TBzC6WdcRTq9D-0GO7nguLxY64QbI,188
|
5
|
+
sierra/core/cmdline.py,sha256=j9eAStCFolUyzvUSzqeRE1BNgtxDTgaYqDiaTTYFUBQ,58191
|
6
|
+
sierra/core/config.py,sha256=IGekEo5htDNi-d9JTZwVtfOOYA4LcCvGPeUrIenuz1s,4557
|
7
|
+
sierra/core/logging.py,sha256=jq_bryJDLeMfzsRsWkDpQI20HvOJqd3b14Ank9a-1DI,985
|
8
|
+
sierra/core/platform.py,sha256=jOlm4PVPNp9EPjtckaYR66t5p6A4fQwBxmjZoFCHz-o,17359
|
9
|
+
sierra/core/plugin.py,sha256=Bc4n1_Q5VvorAsbwt76K6cZmSrU-f0m2tNyQSWXYsOE,3500
|
10
|
+
sierra/core/plugin_manager.py,sha256=PB5AmPpjcl9ct-F8_x_tVwRioOLjHD0Vp66rQtkLrVc,12535
|
11
|
+
sierra/core/root_dirpath_generator.py,sha256=pEJd_9a_eWSWLHPDv4fd-HWnbB0MPZG9c_ukXe3xl3k,8173
|
12
|
+
sierra/core/startup.py,sha256=raE4kgNarzcDIDlgw2cHFenH3_qJJehEq4kBCE4Rnpk,5422
|
13
|
+
sierra/core/stat_kernels.py,sha256=wBTWEXw2XvdSfxghNlhUbKkn1XjgTP7_d0OBM6lUvWE,6030
|
14
|
+
sierra/core/storage.py,sha256=VJ5IqNM_grOMYH5vq6bI5EO4muySERaj4TI-Ngzny6w,1300
|
15
|
+
sierra/core/types.py,sha256=R5gW2u9nBPHJJ7HdliFzq999SwvWgYzPGX0tlyWAiWQ,2049
|
16
|
+
sierra/core/utils.py,sha256=TOlAupVdD9KRYIkv3IjUcb4hO6WLOV5zzsQbnjN74bU,12471
|
17
|
+
sierra/core/vector.py,sha256=wVCoOU7rS7hYpmiOElh0RAF6xlKRuDr7fBD13ykpkys,3843
|
18
|
+
sierra/core/experiment/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
19
|
+
sierra/core/experiment/bindings.py,sha256=6BSg3Li5D1ZWRxxPSXJYZ8TQlGwIfQupxbLSceTs7Pg,10152
|
20
|
+
sierra/core/experiment/definition.py,sha256=5ubzB_yHsULO3qSWfACEd_HcINptGlk7zGbWjb_UfUU,11458
|
21
|
+
sierra/core/experiment/spec.py,sha256=QpCOHCi1OGWuCRVS-YnDPwflimRStcqCzAVMWf7IcE0,6950
|
22
|
+
sierra/core/experiment/xml.py,sha256=jgAG_5J4midlf-uOQIkqfK9kFnXTNc0OFhf-3yEMA3c,14619
|
23
|
+
sierra/core/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
+
sierra/core/generators/controller_generator_parser.py,sha256=7Jr0K4p0O0PQRW0JoF8UDCB9IAEIWRGZoZ1J0DLpoXw,873
|
25
|
+
sierra/core/generators/exp_creator.py,sha256=QdfOvsGrtx7SEjd1DzT4XOf2QK9GqZQ3nGlAFV7M_lQ,15596
|
26
|
+
sierra/core/generators/exp_generators.py,sha256=VSSmjmP8VQXzBrXnzASEzN_fJS6TPr_jPnlAlxvwsF4,5574
|
27
|
+
sierra/core/generators/generator_factory.py,sha256=Os_kkW76XEoC5OyoOeGNQFHbRaNP9xJ8JxtCC48TfPE,8919
|
28
|
+
sierra/core/graphs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
+
sierra/core/graphs/heatmap.py,sha256=ehpdpnsFJiJgfdNQA2FyqwTYrn7f4cu6B3fwJ1jkppc,12218
|
30
|
+
sierra/core/graphs/scatterplot2D.py,sha256=boUvsHbN5dJYyKsrm5eRSvW2T6_xi3fmYFVu-mjhmnY,3685
|
31
|
+
sierra/core/graphs/stacked_line_graph.py,sha256=pXyCDCP3YOv-A3skl4dCPWNKF8SzQ76Wup80xdClw6I,9125
|
32
|
+
sierra/core/graphs/stacked_surface_graph.py,sha256=XH35cVtoqaF2hRv_TrjlF0F4GsP1DO_Fw35MdEGCai8,8125
|
33
|
+
sierra/core/graphs/summary_line_graph.py,sha256=G7w7_kTXevB5aw4o6BfRE3tTNBYCbfCrlZHfxh7eCa4,13573
|
34
|
+
sierra/core/hpc/__init__.py,sha256=IG0EW-YZRtbyq01-G62wdgzI5hZ9OBqEbC1-QQhJFsI,167
|
35
|
+
sierra/core/hpc/cmdline.py,sha256=wtnI0C__i6eKLrj8O5j5jNreSRBFp75xlkd35NeaciU,5186
|
36
|
+
sierra/core/models/__init__.py,sha256=uAPXNomKYGVVsvnhTSpSrltW0S3TqRj6dOvVvd8SXcc,168
|
37
|
+
sierra/core/models/graphs.py,sha256=sf_W-wv0HW2PspEq8FUNFcOi2esjQS0qMZcqA9tccLk,3330
|
38
|
+
sierra/core/models/interface.py,sha256=ot342yAWY_xNj6JdcK5e3hH1xmc879FDS2n89WnIX3s,6729
|
39
|
+
sierra/core/pipeline/__init__.py,sha256=Ag1cASFvJ805yvo2No1nP5u4tiy0fUrAiKHZpLyaltg,271
|
40
|
+
sierra/core/pipeline/pipeline.py,sha256=ojmV1GXXHhW6vfryboGJpOMjuUr4nD-nJ8vtT36b3tI,7487
|
41
|
+
sierra/core/pipeline/stage1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
+
sierra/core/pipeline/stage1/pipeline_stage1.py,sha256=g2z557US9N57I2XEIDJAxJIpO0w0t3N0-ZjqFDk7NJU,3304
|
43
|
+
sierra/core/pipeline/stage2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
|
+
sierra/core/pipeline/stage2/exp_runner.py,sha256=D7wtwdR4vkTYI1oXuMsJ8NiQfhZ9Alhuqkix04KEiz8,10734
|
45
|
+
sierra/core/pipeline/stage2/pipeline_stage2.py,sha256=Z_Ao0bib-zj5MSJ7fGcQiGJ-f5QzQVlIzdEeqMMGNiU,1260
|
46
|
+
sierra/core/pipeline/stage3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
sierra/core/pipeline/stage3/imagizer.py,sha256=BspVVNc7VhCNkt_jGXpFFaSlLr7bvSQiaN1rHXhxoWY,5094
|
48
|
+
sierra/core/pipeline/stage3/pipeline_stage3.py,sha256=lpBugfd-uASYqE1PgOiDIpVI4GcpCPnO6D_AkBIKZW8,4572
|
49
|
+
sierra/core/pipeline/stage3/run_collator.py,sha256=olq8wUiBWv4uK0mX2mo2siClt97vV2pxkfeDa_fTX1M,12585
|
50
|
+
sierra/core/pipeline/stage3/statistics_calculator.py,sha256=uFuGW18LnHUKn9tfm8PveB8PGETbWRwvkzFz0EXCmlg,18186
|
51
|
+
sierra/core/pipeline/stage4/__init__.py,sha256=ttj4q54PLfuUQfrwH6Pnl7z289sDpQlpU_3jSvJVw5g,80
|
52
|
+
sierra/core/pipeline/stage4/graph_collator.py,sha256=yVeu9Tr0pdq1iGnPO5IUVun3nI1r6-Hnd1rrdMIISPo,12042
|
53
|
+
sierra/core/pipeline/stage4/inter_exp_graph_generator.py,sha256=GWFqivwyteL5qVIR8Ta5oJv-zecHb_RqPAU6EYRSC1k,9591
|
54
|
+
sierra/core/pipeline/stage4/intra_exp_graph_generator.py,sha256=zdpR7l6jUNKJdOKkCrkbLMrYS3MEBOcwPMOOfB8lMyY,13814
|
55
|
+
sierra/core/pipeline/stage4/model_runner.py,sha256=RkDmjzeZvqxEiZEwuIfw3wiwvKUXH8libBAX_w9K_5w,6745
|
56
|
+
sierra/core/pipeline/stage4/pipeline_stage4.py,sha256=LMpptOAfsalO71VmfFKL8rcOUoBnsTxG2Y7zrrHd4DQ,18911
|
57
|
+
sierra/core/pipeline/stage4/rendering.py,sha256=k-E1Fy4pbGj1JoHkzM23ZV398t-vRh2a30VdZhSqaX8,9385
|
58
|
+
sierra/core/pipeline/stage4/yaml_config_loader.py,sha256=mYHUL1Q2vuKMUp8lqca3DSI7t3MU1An3HyLN0BqZb8w,3486
|
59
|
+
sierra/core/pipeline/stage5/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
+
sierra/core/pipeline/stage5/inter_scenario_comparator.py,sha256=leqV-fKGgRmIyRbumLUopOJ6YMhTZEF91RixMF6ATxk,14183
|
61
|
+
sierra/core/pipeline/stage5/intra_scenario_comparator.py,sha256=r6B3bD2H7UDJdikZ6MGH8G3Vb_WZ1E7eA7p1Yil5NLA,43936
|
62
|
+
sierra/core/pipeline/stage5/pipeline_stage5.py,sha256=jjD441xH1tTQLlhxLRD4Iz5ZVVu6IDBk50IGNv9FhxI,10600
|
63
|
+
sierra/core/ros1/__init__.py,sha256=K0gzvYh9BZG27kSCU6wI8WA91hiqfITAPBFbrEMEWSg,201
|
64
|
+
sierra/core/ros1/callbacks.py,sha256=r1B8bB8rXSo_mVKYYjpF2Lo_tWrLMQ0lEoRCAeFf9sM,1297
|
65
|
+
sierra/core/ros1/cmdline.py,sha256=_IhypTnZro_PCHmNkaKqihOumWEXdHRjHNgHR7Fz6NU,4379
|
66
|
+
sierra/core/ros1/generators.py,sha256=zGEsZAPDXcUKpV7yMLg_u0EXFL82HPY-mPO35UHNhYw,7525
|
67
|
+
sierra/core/ros1/variables/__init__.py,sha256=ldJ62GefqZYg-8FQJ5igx09IwgdL7DNFssSJVqohgzM,145
|
68
|
+
sierra/core/ros1/variables/exp_setup.py,sha256=olfzXwJZfyK24Hs_BeIZOgW7iOHA1I5_yfCzC2AOBSA,7328
|
69
|
+
sierra/core/variables/__init__.py,sha256=VaNgY91G73CZZuiT6mYnMC1W3HDPUlG2JnGtu4MeEFs,135
|
70
|
+
sierra/core/variables/base_variable.py,sha256=v0cJ6D4MzG9uayn1O7zQkz6AsKtRcmAx1Y9El3KI2yM,1562
|
71
|
+
sierra/core/variables/batch_criteria.py,sha256=bMT6i3qxxLkgo3UxnFXLVBpMJMo4dKajrS4ZtdxfbYo,25747
|
72
|
+
sierra/core/variables/exp_setup.py,sha256=bKD9nZrEbTsCpRw2ijHl6IK7u0Ukgenf1EXRM5oEyeM,1937
|
73
|
+
sierra/core/variables/population_size.py,sha256=Pd57Blo-4fFh5X7qQB3e46SXOYPu4vjgdAFpudXP2Ro,3925
|
74
|
+
sierra/core/variables/variable_density.py,sha256=JTYjBYmQbIXwIL4uqq4_eUWP4F4FcFOqZexr7m23hvw,3240
|
75
|
+
sierra/plugins/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
76
|
+
sierra/plugins/hpc/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
77
|
+
sierra/plugins/hpc/adhoc/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
78
|
+
sierra/plugins/hpc/adhoc/plugin.py,sha256=joZTXeN4HIY5yLqFTHlxRp6MC2-6UZLjw0tNF8LvIP4,4046
|
79
|
+
sierra/plugins/hpc/local/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
80
|
+
sierra/plugins/hpc/local/plugin.py,sha256=k_ECsgAg4wGC_VC9yCV1IUTHzwAGzbVQjk2cJRPLXnc,2501
|
81
|
+
sierra/plugins/hpc/pbs/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
82
|
+
sierra/plugins/hpc/pbs/plugin.py,sha256=NEvC4xUrVMPOBFixygxTwxVF5JnrtssoVGPw8t7Pva0,3858
|
83
|
+
sierra/plugins/hpc/slurm/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
84
|
+
sierra/plugins/hpc/slurm/plugin.py,sha256=VQpaSGAmSJPEUQDyUFvAa35nxAYfLs74CeTljVDGBLs,4164
|
85
|
+
sierra/plugins/platform/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
86
|
+
sierra/plugins/platform/argos/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
87
|
+
sierra/plugins/platform/argos/cmdline.py,sha256=2Q4lA6acD0xfS4UCF45gIioSu6xF9014z9R4hiYTtwE,15855
|
88
|
+
sierra/plugins/platform/argos/plugin.py,sha256=yQlEChgzeYXecQ-1P9WnVkqRdhsyKX0PwP8_n_hOl0o,13128
|
89
|
+
sierra/plugins/platform/argos/generators/__init__.py,sha256=ldJ62GefqZYg-8FQJ5igx09IwgdL7DNFssSJVqohgzM,145
|
90
|
+
sierra/plugins/platform/argos/generators/platform_generators.py,sha256=-lA47YnzwT3aDDJIGESseaDerWb2whYpHZxMLMAlv5U,15432
|
91
|
+
sierra/plugins/platform/argos/variables/__init__.py,sha256=ldJ62GefqZYg-8FQJ5igx09IwgdL7DNFssSJVqohgzM,145
|
92
|
+
sierra/plugins/platform/argos/variables/arena_shape.py,sha256=sFSjJ_jhgXb9TOnmICYyI3AfGCxexbi5gx7tdauz0ac,6062
|
93
|
+
sierra/plugins/platform/argos/variables/cameras.py,sha256=mv6PmPH5oOANcd0mR97BQF44jGH0f25MvvyKTujaS6E,9031
|
94
|
+
sierra/plugins/platform/argos/variables/constant_density.py,sha256=jJDCY9TFVccknLW_odCwX29S6GXNIR-KtmHwJwS7oVc,4618
|
95
|
+
sierra/plugins/platform/argos/variables/exp_setup.py,sha256=Lphr_3GBK4AvfJkWJI-qpX2HSJNcpeEjaEmdIr1ajfw,3462
|
96
|
+
sierra/plugins/platform/argos/variables/physics_engines.py,sha256=OElu-sBXVP2t5J0aukFuPMRj1_TXgZr8Gnue81Lz9jc,19636
|
97
|
+
sierra/plugins/platform/argos/variables/population_constant_density.py,sha256=ULyBc3KPOhBPjdhISMjYsVVY-0GC1xo8Usi9PxCQNgA,6577
|
98
|
+
sierra/plugins/platform/argos/variables/population_size.py,sha256=yylNQq0wt3dR7d6RGP5ikyX0AI6ABTqSSygYQd3Vwx8,3539
|
99
|
+
sierra/plugins/platform/argos/variables/population_variable_density.py,sha256=T9PlQce8XXDRt2GMSG_SQnmDhHPeTE0kYtmIR7nre3I,4967
|
100
|
+
sierra/plugins/platform/argos/variables/rendering.py,sha256=m15KiVrrBXm4wdVNuLvip2A0cCgSiT7bdxmxwgzHdBU,3699
|
101
|
+
sierra/plugins/platform/ros1gazebo/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
102
|
+
sierra/plugins/platform/ros1gazebo/cmdline.py,sha256=vNXi7VxoCeZWhaZejeBKGiXbcOGibbo-XjcnFhCsvsg,9920
|
103
|
+
sierra/plugins/platform/ros1gazebo/plugin.py,sha256=sCw0jVC7G3cssdR_p1HumEX6mULeKl7pdC-T_tCZ96A,13097
|
104
|
+
sierra/plugins/platform/ros1gazebo/generators/__init__.py,sha256=ldJ62GefqZYg-8FQJ5igx09IwgdL7DNFssSJVqohgzM,145
|
105
|
+
sierra/plugins/platform/ros1gazebo/generators/platform_generators.py,sha256=8huaUOYPrcl52PjzqtTZoTrsHMZ2s8qfvAp1cQ2wke8,4367
|
106
|
+
sierra/plugins/platform/ros1gazebo/variables/__init__.py,sha256=eGHlEcS1oJUpCzUGeBFg_eu88oylzEUPhHfqfGoxn-k,194
|
107
|
+
sierra/plugins/platform/ros1gazebo/variables/population_size.py,sha256=A6alXRAA2MdvpWstIdjyNJSdIeDcwVnsozmMZKq33uM,8463
|
108
|
+
sierra/plugins/platform/ros1robot/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
109
|
+
sierra/plugins/platform/ros1robot/cmdline.py,sha256=74aqpmncUwPo9gHiSlUO1oypeh7VNaaRX6kSWka2Aqc,6972
|
110
|
+
sierra/plugins/platform/ros1robot/plugin.py,sha256=_ZGtiyuxK1GwFntyayH5KheEAHK5NcrFJaHdhMjpDWI,14603
|
111
|
+
sierra/plugins/platform/ros1robot/generators/__init__.py,sha256=ldJ62GefqZYg-8FQJ5igx09IwgdL7DNFssSJVqohgzM,145
|
112
|
+
sierra/plugins/platform/ros1robot/generators/platform_generators.py,sha256=2NVgL0HSPCVFgMs40s0_z4yhf2mlQQa_qEnz6qNI7qw,3592
|
113
|
+
sierra/plugins/platform/ros1robot/variables/__init__.py,sha256=eGHlEcS1oJUpCzUGeBFg_eu88oylzEUPhHfqfGoxn-k,194
|
114
|
+
sierra/plugins/platform/ros1robot/variables/population_size.py,sha256=HWFyCRWlA1zafNGLfeCu9cSP2LCNQzc_EB_7k-6FzMM,5485
|
115
|
+
sierra/plugins/robot/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
116
|
+
sierra/plugins/robot/turtlebot3/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
117
|
+
sierra/plugins/robot/turtlebot3/plugin.py,sha256=r7TSnboGUI5cCqT_ty1X9KVJ770pMcPYpow5fU5QmvI,7216
|
118
|
+
sierra/plugins/storage/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
119
|
+
sierra/plugins/storage/csv/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
|
120
|
+
sierra/plugins/storage/csv/plugin.py,sha256=EnFIAmeEpAcVUlbuGG3I3sdb9AVO5zg4k2pa2C1dLFM,938
|
121
|
+
sierra_research-1.3.5.data/data/share/man/man1/sierra-cli.1,sha256=2475tBsi018sW70tehlYaBeSgQmhWn571-UVbz6fvrc,54227
|
122
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra-examples.7,sha256=0nNm-vUOL7nuoxaehLkUoFq-c3ormAfY7hhi_VxsLLQ,17940
|
123
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra-exec-envs.7,sha256=-YUevZd6jzD5JjfTtP3xL-dYPKDlUtvJyQdkZgvLsa4,7796
|
124
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra-glossary.7,sha256=YT8uVfBe2jFMi_AhkxqPqQuyyRJo_RFzbnZoW65cyUs,10921
|
125
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra-platforms.7,sha256=bBhSY1tVvMRvoJYb-yMt41PsnpD-BC_dkg4AblxGqg0,13596
|
126
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra-usage.7,sha256=bvZuHWBrKY6nGbedGljnHaDv1ALh1S6L7bKAePQ_xnQ,24455
|
127
|
+
sierra_research-1.3.5.data/data/share/man/man7/sierra.7,sha256=ir4cGjIzMKvvOFhTq32r2KhJIcr5woPhcN0QYLi3JyE,2476
|
128
|
+
sierra_research-1.3.5.dist-info/LICENSE,sha256=syQ7e-OEgTREA-x8XbHp8x4CIj7LR1-_cwicIfKGWcg,1052
|
129
|
+
sierra_research-1.3.5.dist-info/METADATA,sha256=sGoxhPq1f2TbZpt0TaQ-bo3fWGREG7RXLQKYO_IUqKs,16890
|
130
|
+
sierra_research-1.3.5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
131
|
+
sierra_research-1.3.5.dist-info/entry_points.txt,sha256=3FhShoQcDSf17edEyA6qcO1YwGrZ5kuayu2iVG5npXY,48
|
132
|
+
sierra_research-1.3.5.dist-info/top_level.txt,sha256=cDP7dDWAyFL7fK11L89hCUHy9-G267wuHeVLVR4pTX4,7
|
133
|
+
sierra_research-1.3.5.dist-info/RECORD,,
|