You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/how-to-contribute.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ At the end, please make sure that you also :ref:`extended the unit tests <contri
17
17
Creating an Issue
18
18
------------------
19
19
20
-
A GitHub issue should contain any information that is needed that a third person understands the problem (in case of a bug) or the vision of a new feature. To create an issue
20
+
A GitHub issue should contain any information that is needed that a third person understands the problem (in case of a bug) or the vision of a new feature. To create an issue:
21
21
22
22
1. Go to the `GitHub Issues <github_py_experimenter_issues_>`_.
23
23
2. Summarize the bug / vision as title of the issue.
@@ -182,9 +182,9 @@ The documentation of the ``PyExperimenter`` is key to all users to understand th
182
182
Create Pull Request
183
183
--------------------
184
184
185
-
After all changes are made, including :ref:`tests <contribute_unit_tests>` and :ref:`documentation <contribute_update_documentation>`, make sure to commit and :ref:`push <contribute_fork_project>` all your changes.
185
+
After all changes are made, including :ref:`tests <contribute_unit_tests>` and :ref:`documentation <contribute_update_documentation>`, make sure to commit and :ref:`push <contribute_fork_project>` all your changes.
186
186
187
-
Afterwards, go to the `PyExperimenter GitHub Pull Requests <github_py_experimenter_pulls_>`_ and create a new pull request.
187
+
Afterwards, go to the `PyExperimenter GitHub Pull Requests <github_py_experimenter_pulls_>`_ and create a new pull request.
188
188
189
189
1. Make sure to select the correct source and destination repositories and according branches. The source repository is your fork, and the source branch is the ``<feature_branch_name>``. The destination repository is ``tornede/py_experimenter`` and the destination branch is ``develop``.
Copy file name to clipboardExpand all lines: docs/source/usage/execution.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,11 +29,11 @@ A ``PyExperimenter`` can be created without any further information, assuming th
29
29
30
30
Additionally, further information can be given to ``PyExperimenter``:
31
31
32
-
- ``experiment_configuration_file_path``: The path of the :ref:`experiment configuration file <experiment_configuration_file>`. Default: ``config/experiment_configuration.cfg``
32
+
- ``experiment_configuration_file_path``: The path of the :ref:`experiment configuration file <experiment_configuration_file>`. Default: ``config/experiment_configuration.cfg``.
33
33
- ``database_credential_file_path``: The path of the :ref:`database credential file <database_credential_file>`. Default: ``config/database_credentials.cfg``
34
34
- ``database_name``: The name of the database to manage the experiments. If given, it will overwrite the database name given in the `experiment_configuration_file_path`.
35
35
- ``table_name``: The name of the database table to manage the experiments. If given, it will overwrite the table name given in the `experiment_configuration_file_path`.
36
-
- ``name``: The name of the experimenter, which will be added to the database table of each executed experiment. If using the PyExperimenter on an HPC system, this can be used for the job ID, so that the according log file can easily be found. Default: ``PyExperimenter``
36
+
- ``name``: The name of the experimenter, which will be added to the database table of each executed experiment. If using the PyExperimenter on an HPC system, this can be used for the job ID, so that the according log file can easily be found. Default: ``PyExperimenter``.
37
37
38
38
39
39
-------------------
@@ -118,7 +118,7 @@ The following status exist:
118
118
119
119
- ``created``: All parameters for the experiment are defined and the experiment is ready for execution.
120
120
- ``running``: The experiment is currently in execution.
121
-
- ``done``: The execution of the experiment terminated without interruption and the results are written into the database
121
+
- ``done``: The execution of the experiment terminated without interruption and the results are written into the database.
122
122
- ``error``: An error occurred during execution, which is also logged into the database.
0 commit comments