pwact 0.1.21__py3-none-any.whl → 0.1.22__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.
- pwact/active_learning/explore/select_image.py +1 -1
- pwact/active_learning/user_input/cmd_infos.py +2 -1
- pwact/main.py +1 -1
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/METADATA +1 -1
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/RECORD +9 -9
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/LICENSE +0 -0
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/WHEEL +0 -0
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/entry_points.txt +0 -0
- {pwact-0.1.21.dist-info → pwact-0.1.22.dist-info}/top_level.txt +0 -0
|
@@ -179,7 +179,7 @@ def select_pd(devi_pd:DataFrame, lower:float, higer:float, max_select:float):
|
|
|
179
179
|
return error_pd, accurate_pd, cand_rand_candi, cand_remove_candi
|
|
180
180
|
|
|
181
181
|
def read_pd_files(model_devi_files:list[str]):
|
|
182
|
-
devi_pd = pd.DataFrame(columns=EXPLORE_FILE_STRUCTURE.devi_columns
|
|
182
|
+
devi_pd = pd.DataFrame()#columns=EXPLORE_FILE_STRUCTURE.devi_columns
|
|
183
183
|
base_force_kpu = []
|
|
184
184
|
if os.path.basename(model_devi_files[0]) == EXPLORE_FILE_STRUCTURE.kpu_model_devi:
|
|
185
185
|
for devi_file in model_devi_files:
|
|
@@ -72,4 +72,5 @@ def cmd_info_filter():
|
|
|
72
72
|
cmd_info += "filter" + "\n"
|
|
73
73
|
cmd_info += "you could use this method to test the selection results corresponding to the upper and lower limit settings\n"
|
|
74
74
|
cmd_info += "example:\n"
|
|
75
|
-
cmd_info += "'pwact filter -i iter.0000/explore/
|
|
75
|
+
cmd_info += "'pwact filter -i iter.0000/explore/md -l 0.01 -u 0.02 -s'\n\n"
|
|
76
|
+
return cmd_info
|
pwact/main.py
CHANGED
|
@@ -301,7 +301,7 @@ def kill_job():
|
|
|
301
301
|
|
|
302
302
|
def filter_test(input_cmds):
|
|
303
303
|
parser = argparse.ArgumentParser()
|
|
304
|
-
parser.add_argument('-i', '--md_dir', help="specify
|
|
304
|
+
parser.add_argument('-i', '--md_dir', help="specify the md dir such as 'iter.0000/temp_run_iter_work/explore/md' or iter.0000/explore/md", type=str, required=True)
|
|
305
305
|
parser.add_argument('-l', '--lower', help="specify lower limit value", type=float, required=True)
|
|
306
306
|
parser.add_argument('-u', '--upper', help="specify upper limit value", type=float, required=True)
|
|
307
307
|
parser.add_argument('-s', '--save', action='store_true', help="if '-s' is set, save the detailed information of the selected configs to CSV files")
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pwact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
pwact/main.py,sha256=
|
|
2
|
+
pwact/main.py,sha256=61QOZIBvxP-ddz2uI9JD35T-LIDU09NuARbWkNOI3pA,16872
|
|
3
3
|
pwact/active_learning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pwact/active_learning/environment.py,sha256=KvyMaOXrM-HMMma4SnoOQFO6fZxDsk0Fsyyy7xqfGCo,684
|
|
5
5
|
pwact/active_learning/explore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pwact/active_learning/explore/run_model_md.py,sha256=uSW-ZaXH7NHexnMDm3Qb7ny4rRhk9KZ3dds2D9AVDeo,19891
|
|
7
|
-
pwact/active_learning/explore/select_image.py,sha256=
|
|
7
|
+
pwact/active_learning/explore/select_image.py,sha256=dmsMoxFwQ7JDPHK2vRFzUfXeEovT86cmUnmEm-qrfwE,12665
|
|
8
8
|
pwact/active_learning/init_bulk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
pwact/active_learning/init_bulk/aimd.py,sha256=XzDlX2vylaljQKoUnv6nrI2NfiOdHZpq8qr3DenA1F4,10465
|
|
10
10
|
pwact/active_learning/init_bulk/duplicate_scale.py,sha256=Z9mYBASy9gNLTV_db8lqfXpcahHbrQq6emae169P2wM,9468
|
|
@@ -22,7 +22,7 @@ pwact/active_learning/train/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
22
22
|
pwact/active_learning/train/dp_kpu.py,sha256=GkGKEGhLmOvPERqgTkf_0_vD9zOEPlBX2N7vuSQG_-c,9317
|
|
23
23
|
pwact/active_learning/train/train_model.py,sha256=NXqTKrl7Lb_UGt2-Lq_gLM9iZDAZFY09nxP_aGtBdrE,10525
|
|
24
24
|
pwact/active_learning/user_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
pwact/active_learning/user_input/cmd_infos.py,sha256=
|
|
25
|
+
pwact/active_learning/user_input/cmd_infos.py,sha256=qyUYxsxnqZS2hxDbbeyyqsB2kps5z5nBCBa2iK0QE68,3372
|
|
26
26
|
pwact/active_learning/user_input/init_bulk_input.py,sha256=NCUAB1xpa67MXHRRWAkmWZjkQbTibE4EjmtlOmr0HdQ,6762
|
|
27
27
|
pwact/active_learning/user_input/iter_input.py,sha256=zwFCI6dDFIEVWitEqBBZP7TtrSvxMbmSUEPiM0Z8ZOk,10732
|
|
28
28
|
pwact/active_learning/user_input/resource.py,sha256=bg1rkdjIzuj7pDUvp6h1yMWFT0PqYzH4BfX5tJ7MZzc,6812
|
|
@@ -52,9 +52,9 @@ pwact/utils/app_lib/cp2k.py,sha256=ljhCCHmZ2kfoXEXn5O7-D56EgTLn2a7H3y_TIkHiasY,1
|
|
|
52
52
|
pwact/utils/app_lib/cp2k_dp.py,sha256=VP4gyPGhLcMAqAjrqCQSUiiGlESNlyYz7Gs3Q4QoUHo,6912
|
|
53
53
|
pwact/utils/app_lib/lammps.py,sha256=2oxHJHdDxfDDWWmnjo0gMNwgGvxABwuDgDlb8kbhgfk,8037
|
|
54
54
|
pwact/utils/app_lib/pwmat.py,sha256=PTRPkG_d00ibGhpCe2-4M7MW3dx2ZuAyb9hT2jl_LAs,18047
|
|
55
|
-
pwact-0.1.
|
|
56
|
-
pwact-0.1.
|
|
57
|
-
pwact-0.1.
|
|
58
|
-
pwact-0.1.
|
|
59
|
-
pwact-0.1.
|
|
60
|
-
pwact-0.1.
|
|
55
|
+
pwact-0.1.22.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
56
|
+
pwact-0.1.22.dist-info/METADATA,sha256=Gd3Y11fJq-d9Pt-06_RMwmZTQj_dSbN1c9VyeZ5YdD4,3659
|
|
57
|
+
pwact-0.1.22.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
58
|
+
pwact-0.1.22.dist-info/entry_points.txt,sha256=p61auAnpbn8E2WjvHNBA7rb9_NRAOCew4zdcCj33cGc,42
|
|
59
|
+
pwact-0.1.22.dist-info/top_level.txt,sha256=fY1_7sH5Lke4dC9L8MbYM4fT5aat5eCkAmpkIzY1SlM,6
|
|
60
|
+
pwact-0.1.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|