omniopt2 7195__py3-none-any.whl → 7197__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.
- .omniopt.py +39 -1
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt.py +39 -1
- {omniopt2-7195.dist-info → omniopt2-7197.dist-info}/METADATA +1 -1
- {omniopt2-7195.dist-info → omniopt2-7197.dist-info}/RECORD +35 -35
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.general.sh +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.helpers.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/.tpe.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/LICENSE +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/omniopt +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/omniopt_share +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/setup.py +0 -0
- {omniopt2-7195.data → omniopt2-7197.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7195.dist-info → omniopt2-7197.dist-info}/WHEEL +0 -0
- {omniopt2-7195.dist-info → omniopt2-7197.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7195.dist-info → omniopt2-7197.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -5992,6 +5992,7 @@ def get_python_errors() -> List[List[str]]:
|
|
5992
5992
|
["NameError", synerr],
|
5993
5993
|
["ValueError", synerr],
|
5994
5994
|
["TypeError", synerr],
|
5995
|
+
["FileNotFoundError", "This can happen when you don't have absolute paths for your data, or you haven't used the SCRIPT_PATH variable. See the documentation for the run.sh file."],
|
5995
5996
|
["AssertionError", "Assertion failed"],
|
5996
5997
|
["AttributeError", "Attribute Error"],
|
5997
5998
|
["EOFError", "End of file Error"],
|
@@ -6013,7 +6014,44 @@ def get_python_errors() -> List[List[str]]:
|
|
6013
6014
|
["error: argument", "Wrong argparse argument"],
|
6014
6015
|
["error: unrecognized arguments", "Wrong argparse argument"],
|
6015
6016
|
["CUDNN_STATUS_INTERNAL_ERROR", "Cuda had a problem. Try to delete ~/.nv and try again."],
|
6016
|
-
["CUDNN_STATUS_NOT_INITIALIZED", "Cuda had a problem. Try to delete ~/.nv and try again."]
|
6017
|
+
["CUDNN_STATUS_NOT_INITIALIZED", "Cuda had a problem. Try to delete ~/.nv and try again."],
|
6018
|
+
["BrokenPipeError", "Broken pipe: This usually happens when piping output to a process that closes early (e.g., head)"],
|
6019
|
+
["ConnectionError", "Network connection failed. Check your internet or the remote server status."],
|
6020
|
+
["TimeoutError", "An operation took too long to complete. Could be a network or file issue."],
|
6021
|
+
["PermissionError", "You don't have permission to access this file or resource."],
|
6022
|
+
["IsADirectoryError", "A directory was used where a file was expected."],
|
6023
|
+
["NotADirectoryError", "A file was used where a directory was expected."],
|
6024
|
+
["StopIteration", "An iterator was exhausted. Happens e.g. in loops over generators."],
|
6025
|
+
["UnboundLocalError", "A local variable was referenced before it was assigned."],
|
6026
|
+
["FloatingPointError", "A floating-point error occurred. This is rare and depends on system config."],
|
6027
|
+
["json.decoder.JSONDecodeError", "Invalid JSON format. Check your JSON syntax."],
|
6028
|
+
["SystemExit", "The program requested a system exit."],
|
6029
|
+
["FloatingPointError", "A floating-point calculation failed fatally."],
|
6030
|
+
["BrokenProcessPool", "A subprocess died unexpectedly."],
|
6031
|
+
["zlib.error", "Compression/decompression failed (zlib)."],
|
6032
|
+
["binascii.Error", "Binary/ASCII conversion failed. Often due to malformed base64 or hex."],
|
6033
|
+
["SSL.SSLError", "A fatal SSL error occurred. Possibly a certificate or protocol problem."],
|
6034
|
+
["socket.gaierror", "Address-related error in socket connection (e.g., DNS failure)."],
|
6035
|
+
["socket.timeout", "Socket operation timed out fatally."],
|
6036
|
+
["http.client.RemoteDisconnected", "The remote host closed the connection unexpectedly."],
|
6037
|
+
["multiprocessing.ProcessError", "A multiprocessing error occurred, possibly a crash."],
|
6038
|
+
["cudaErrorMemoryAllocation", "CUDA ran out of memory. Consider reducing batch size or model size."],
|
6039
|
+
["cudaErrorIllegalAddress", "Illegal memory access by CUDA kernel. Could be a bug in kernel or index out-of-bounds."],
|
6040
|
+
["cudaErrorLaunchFailure", "CUDA kernel launch failed. Often due to memory or driver issues."],
|
6041
|
+
["cudaErrorUnknown", "Unknown fatal CUDA error. Could be hardware or driver related."],
|
6042
|
+
["CUBLAS_STATUS_ALLOC_FAILED", "cuBLAS could not allocate GPU memory."],
|
6043
|
+
["CUBLAS_STATUS_INTERNAL_ERROR", "cuBLAS encountered a fatal internal error."],
|
6044
|
+
["CUBLAS_STATUS_EXECUTION_FAILED", "cuBLAS failed during execution. Usually a hardware/driver issue."],
|
6045
|
+
["OpenBLAS blas_thread_init: pthread_create failed", "OpenBLAS failed to initialize threads. Could be OS/thread limit."],
|
6046
|
+
["libc++abi.dylib: terminating", "The C++ runtime aborted due to a fatal exception."],
|
6047
|
+
["terminate called after throwing an instance of", "Uncaught C++ exception crashed the program."],
|
6048
|
+
["Segmentation fault", "Your program tried to access invalid memory. Often due to C extensions or CUDA."],
|
6049
|
+
["Bus error", "Hardware-level memory error. Possibly caused by alignment issues or failed RAM."],
|
6050
|
+
["Illegal instruction", "The CPU tried to execute an invalid or unsupported instruction. Possible binary mismatch."],
|
6051
|
+
["Killed", "Your process was forcefully killed (e.g., OOM killer or SIGKILL)."],
|
6052
|
+
["OOMKilled", "Out-of-memory killer terminated your process. Try reducing memory usage."],
|
6053
|
+
["core dumped", "The program crashed and dumped a core file for debugging."],
|
6054
|
+
["fatal error", "A general fatal error occurred (non-specific). See logs."],
|
6017
6055
|
]
|
6018
6056
|
|
6019
6057
|
@beartype
|
@@ -5992,6 +5992,7 @@ def get_python_errors() -> List[List[str]]:
|
|
5992
5992
|
["NameError", synerr],
|
5993
5993
|
["ValueError", synerr],
|
5994
5994
|
["TypeError", synerr],
|
5995
|
+
["FileNotFoundError", "This can happen when you don't have absolute paths for your data, or you haven't used the SCRIPT_PATH variable. See the documentation for the run.sh file."],
|
5995
5996
|
["AssertionError", "Assertion failed"],
|
5996
5997
|
["AttributeError", "Attribute Error"],
|
5997
5998
|
["EOFError", "End of file Error"],
|
@@ -6013,7 +6014,44 @@ def get_python_errors() -> List[List[str]]:
|
|
6013
6014
|
["error: argument", "Wrong argparse argument"],
|
6014
6015
|
["error: unrecognized arguments", "Wrong argparse argument"],
|
6015
6016
|
["CUDNN_STATUS_INTERNAL_ERROR", "Cuda had a problem. Try to delete ~/.nv and try again."],
|
6016
|
-
["CUDNN_STATUS_NOT_INITIALIZED", "Cuda had a problem. Try to delete ~/.nv and try again."]
|
6017
|
+
["CUDNN_STATUS_NOT_INITIALIZED", "Cuda had a problem. Try to delete ~/.nv and try again."],
|
6018
|
+
["BrokenPipeError", "Broken pipe: This usually happens when piping output to a process that closes early (e.g., head)"],
|
6019
|
+
["ConnectionError", "Network connection failed. Check your internet or the remote server status."],
|
6020
|
+
["TimeoutError", "An operation took too long to complete. Could be a network or file issue."],
|
6021
|
+
["PermissionError", "You don't have permission to access this file or resource."],
|
6022
|
+
["IsADirectoryError", "A directory was used where a file was expected."],
|
6023
|
+
["NotADirectoryError", "A file was used where a directory was expected."],
|
6024
|
+
["StopIteration", "An iterator was exhausted. Happens e.g. in loops over generators."],
|
6025
|
+
["UnboundLocalError", "A local variable was referenced before it was assigned."],
|
6026
|
+
["FloatingPointError", "A floating-point error occurred. This is rare and depends on system config."],
|
6027
|
+
["json.decoder.JSONDecodeError", "Invalid JSON format. Check your JSON syntax."],
|
6028
|
+
["SystemExit", "The program requested a system exit."],
|
6029
|
+
["FloatingPointError", "A floating-point calculation failed fatally."],
|
6030
|
+
["BrokenProcessPool", "A subprocess died unexpectedly."],
|
6031
|
+
["zlib.error", "Compression/decompression failed (zlib)."],
|
6032
|
+
["binascii.Error", "Binary/ASCII conversion failed. Often due to malformed base64 or hex."],
|
6033
|
+
["SSL.SSLError", "A fatal SSL error occurred. Possibly a certificate or protocol problem."],
|
6034
|
+
["socket.gaierror", "Address-related error in socket connection (e.g., DNS failure)."],
|
6035
|
+
["socket.timeout", "Socket operation timed out fatally."],
|
6036
|
+
["http.client.RemoteDisconnected", "The remote host closed the connection unexpectedly."],
|
6037
|
+
["multiprocessing.ProcessError", "A multiprocessing error occurred, possibly a crash."],
|
6038
|
+
["cudaErrorMemoryAllocation", "CUDA ran out of memory. Consider reducing batch size or model size."],
|
6039
|
+
["cudaErrorIllegalAddress", "Illegal memory access by CUDA kernel. Could be a bug in kernel or index out-of-bounds."],
|
6040
|
+
["cudaErrorLaunchFailure", "CUDA kernel launch failed. Often due to memory or driver issues."],
|
6041
|
+
["cudaErrorUnknown", "Unknown fatal CUDA error. Could be hardware or driver related."],
|
6042
|
+
["CUBLAS_STATUS_ALLOC_FAILED", "cuBLAS could not allocate GPU memory."],
|
6043
|
+
["CUBLAS_STATUS_INTERNAL_ERROR", "cuBLAS encountered a fatal internal error."],
|
6044
|
+
["CUBLAS_STATUS_EXECUTION_FAILED", "cuBLAS failed during execution. Usually a hardware/driver issue."],
|
6045
|
+
["OpenBLAS blas_thread_init: pthread_create failed", "OpenBLAS failed to initialize threads. Could be OS/thread limit."],
|
6046
|
+
["libc++abi.dylib: terminating", "The C++ runtime aborted due to a fatal exception."],
|
6047
|
+
["terminate called after throwing an instance of", "Uncaught C++ exception crashed the program."],
|
6048
|
+
["Segmentation fault", "Your program tried to access invalid memory. Often due to C extensions or CUDA."],
|
6049
|
+
["Bus error", "Hardware-level memory error. Possibly caused by alignment issues or failed RAM."],
|
6050
|
+
["Illegal instruction", "The CPU tried to execute an invalid or unsupported instruction. Possible binary mismatch."],
|
6051
|
+
["Killed", "Your process was forcefully killed (e.g., OOM killer or SIGKILL)."],
|
6052
|
+
["OOMKilled", "Out-of-memory killer terminated your process. Try reducing memory usage."],
|
6053
|
+
["core dumped", "The program crashed and dumped a core file for debugging."],
|
6054
|
+
["fatal error", "A general fatal error occurred (non-specific). See logs."],
|
6017
6055
|
]
|
6018
6056
|
|
6019
6057
|
@beartype
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=ApWfMF3xfJMpgn7izNhMA2TAjejd5OukM9MWj6kffwk,387926
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
8
8
|
.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
@@ -26,44 +26,44 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
27
27
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
28
28
|
omniopt_share,sha256=EL0XfZDBX3f6zCI8oLI-JAprBvv2UesVw7k6ufXB1ns,13888
|
29
|
-
pyproject.toml,sha256=
|
29
|
+
pyproject.toml,sha256=T3G0kQGDG8Q9LCzj6BhPkLjqMB0weBRZ1BAQWh17R8U,397
|
30
30
|
requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
32
32
|
test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
33
|
-
omniopt2-
|
34
|
-
omniopt2-
|
35
|
-
omniopt2-
|
36
|
-
omniopt2-
|
37
|
-
omniopt2-
|
38
|
-
omniopt2-
|
39
|
-
omniopt2-
|
40
|
-
omniopt2-
|
41
|
-
omniopt2-
|
42
|
-
omniopt2-
|
43
|
-
omniopt2-
|
44
|
-
omniopt2-
|
45
|
-
omniopt2-
|
46
|
-
omniopt2-
|
47
|
-
omniopt2-
|
48
|
-
omniopt2-
|
49
|
-
omniopt2-
|
50
|
-
omniopt2-
|
51
|
-
omniopt2-
|
52
|
-
omniopt2-
|
53
|
-
omniopt2-
|
54
|
-
omniopt2-
|
55
|
-
omniopt2-
|
56
|
-
omniopt2-
|
57
|
-
omniopt2-
|
58
|
-
omniopt2-
|
59
|
-
omniopt2-
|
60
|
-
omniopt2-
|
61
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
33
|
+
omniopt2-7197.data/data/bin/.colorfunctions.sh,sha256=x6RGjZAkQR24oS-0uatyX55KS-UVcPQWTCC8egI5Y9o,1227
|
34
|
+
omniopt2-7197.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
35
|
+
omniopt2-7197.data/data/bin/.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
36
|
+
omniopt2-7197.data/data/bin/.omniopt.py,sha256=ApWfMF3xfJMpgn7izNhMA2TAjejd5OukM9MWj6kffwk,387926
|
37
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
38
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
39
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
40
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
41
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
42
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
43
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
44
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
45
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
46
|
+
omniopt2-7197.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
47
|
+
omniopt2-7197.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
48
|
+
omniopt2-7197.data/data/bin/.shellscript_functions,sha256=IRbIX0-BBxkQGxWBFBc-RdaGj6Rs_zu3gkxAWd5fL2k,14839
|
49
|
+
omniopt2-7197.data/data/bin/.tpe.py,sha256=Yd9s-ixCbWxTd3x0O1M1sok9QfM2mBEfsDwXhx50-Nc,6464
|
50
|
+
omniopt2-7197.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
51
|
+
omniopt2-7197.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
52
|
+
omniopt2-7197.data/data/bin/omniopt,sha256=3JRBCx_MjkcRlc0y80VNxV0cH0Zs4Va95pU4ojk9dlU,47447
|
53
|
+
omniopt2-7197.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
54
|
+
omniopt2-7197.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
55
|
+
omniopt2-7197.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
56
|
+
omniopt2-7197.data/data/bin/omniopt_share,sha256=EL0XfZDBX3f6zCI8oLI-JAprBvv2UesVw7k6ufXB1ns,13888
|
57
|
+
omniopt2-7197.data/data/bin/requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
58
|
+
omniopt2-7197.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
59
|
+
omniopt2-7197.data/data/bin/test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
60
|
+
omniopt2-7197.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
61
|
+
omniopt2.egg-info/PKG-INFO,sha256=c5BWTEQTrdoswW8TEpMvhIeZkdGak4m6juvnynQDZEU,5822
|
62
62
|
omniopt2.egg-info/SOURCES.txt,sha256=N-HtSaaqFRsd4XqAfeWVSp__3I-sw0d7cknJgyewRwQ,778
|
63
63
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
64
|
omniopt2.egg-info/requires.txt,sha256=lR4dCom0VD9WtxDpAuN83qtJYZfMHl5GT8LjhUk6UJE,772
|
65
65
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
68
|
-
omniopt2-
|
69
|
-
omniopt2-
|
66
|
+
omniopt2-7197.dist-info/METADATA,sha256=c5BWTEQTrdoswW8TEpMvhIeZkdGak4m6juvnynQDZEU,5822
|
67
|
+
omniopt2-7197.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
68
|
+
omniopt2-7197.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
69
|
+
omniopt2-7197.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{omniopt2-7195.data → omniopt2-7197.data}/data/bin/.omniopt_plot_scatter_generation_method.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|