A package for showing all seeds to be fixed
Project description
fixreprod
This is under review.
It is still undergoing improvement.
fixreprod is an indispensable tool to solve reproducibility problems in pseudorandom numbers by fixing all seeds and deterministic algorithms used in libraries of AI systems. The current version can take care of torch, tensorflow, gym and gymnasium with numpy, random and scipy. The program is expandable.
To run fixreprod, install it by the following command. ($) indicates the prompt from the system in the terminal.
$ pip install fixreprod
How to run fixreprod
For example, assume reinforcement_q_learning.py is a source code. Use grep command to generate test.py. test.py contains imported libraries which will be checked by fixreprod. The sed command sed '/^"""/,/^"""/d' removes comment lines from reinforcement_q_learning.py and saves it in reinfo.py. The first grep command removes comment lines with the first character of "#" from reinfo.py and save it in rein.py. The second grep command extracts imported libraries from rein.py and save it in test.py.
$ grep import reinforcement_q_learning.py >test.py
or To see the code only, run the following commands
$ sed '/^"""/,/^"""/d' reinforcement_q_learning.py >reinfo.py
$ grep -v '^#' reinfo.py >rein.py
$ grep import rein.py >test.py
Before running fixreprod, you must install all libraries used in the source code. In reinforcement_q_learning.py, gym, random, numpy, and torch must be installed.
Run fixrepdod and enter "test.py" for checking. fixreprod will show the all seeds to be fixed to eliminate reproducibility problems from your code. 9 seeds and 1 fixing deterministic algorithms are found in this example. $ fixreprod Enter the source code file name: test.py env.action_space.seed(0) env.reset(seed=0) np.random.seed(0) random.Random().seed(0) random.seed(0) torch.Generator().manual_seed(0) torch.cuda.manual_seed(0) torch.cuda.manual_seed_all(0) torch.manual_seed(0) torch.use_deterministic_algorithms(True)
These generated codes should be embedded in the rein.py or reinforcement_q_learning.py. The following figure shows the reproducible result. When changing seed numbers, the different reproducible result can be obtained.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fixreprod-0.0.11.tar.gz
.
File metadata
- Download URL: fixreprod-0.0.11.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfa2e15e9081ab4448c7801831a64476fc0f599c46b2949b4b36ce43c68d98d5 |
|
MD5 | da5f66181cf803307cfda10947ac80b9 |
|
BLAKE2b-256 | 57549eb80dbdfafe389a3e1bc59480607905829c99a0cbd1b1653c37dcb5a115 |
File details
Details for the file fixreprod-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: fixreprod-0.0.11-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f64a89448a946de18184e9f7699974e53c313ed724e6f09d074c34c7f8b52c93 |
|
MD5 | f2620a3c49878d23eac6e498893a2eef |
|
BLAKE2b-256 | 0baa5fce7cf0e701b68f44d11a2af2b5acf04bbf4158dc59080c66cbc7a4ff20 |