Myosotis-Researches 0.0.27__py3-none-any.whl → 0.0.29__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.
- myosotis_researches/CcGAN/internal/__init__.py +2 -1
- myosotis_researches/CcGAN/internal/show_datasets.py +13 -0
- myosotis_researches/CcGAN/models_128/__init__.py +7 -0
- myosotis_researches/CcGAN/models_256/__init__.py +7 -0
- {myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/METADATA +1 -1
- {myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/RECORD +9 -8
- {myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/WHEEL +0 -0
- {myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/licenses/LICENSE +0 -0
- {myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
|
|
1
1
|
from .install_datasets import install_datasets
|
2
2
|
from .uninstall_datasets import uninstall_datasets
|
3
|
+
from .show_datasets import show_datasets
|
3
4
|
|
4
|
-
__all__ = ["install_datasets", "uninstall_datasets"]
|
5
|
+
__all__ = ["install_datasets", "uninstall_datasets", "show_datasets"]
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from importlib import resources
|
2
|
+
import os
|
3
|
+
|
4
|
+
datasets_dir = resources.files("myosotis_researches").joinpath("CcGAN", "datasets")
|
5
|
+
|
6
|
+
def show_datasets():
|
7
|
+
|
8
|
+
datasets = []
|
9
|
+
|
10
|
+
for item in os.listdir(datasets_dir):
|
11
|
+
datasets.append(item)
|
12
|
+
|
13
|
+
print("\n".join(datasets))
|
@@ -6,3 +6,10 @@ from .ResNet_embed import ResNet18_embed, ResNet34_embed, ResNet50_embed, model_
|
|
6
6
|
from .ResNet_regre_eval import ResNet34_regre_eval
|
7
7
|
from .ResNet_class_eval import ResNet34_class_eval
|
8
8
|
|
9
|
+
__all__ = [
|
10
|
+
"cGAN_SAGAN_Generator", "cGAN_SAGAN_Discriminator",
|
11
|
+
"cGAN_concat_SAGAN_Generator", "cGAN_concat_SAGAN_Discriminator",
|
12
|
+
"CcGAN_SAGAN_Generator", "CcGAN_SAGAN_Discriminator",
|
13
|
+
"ResNet18_embed", "ResNet34_embed", "ResNet50_embed", "model_y2h",
|
14
|
+
"ResNet34_regre_eval", "ResNet34_class_eval"
|
15
|
+
]
|
@@ -6,3 +6,10 @@ from .ResNet_embed import ResNet18_embed, ResNet34_embed, ResNet50_embed, model_
|
|
6
6
|
from .ResNet_regre_eval import ResNet34_regre_eval
|
7
7
|
from .ResNet_class_eval import ResNet34_class_eval
|
8
8
|
|
9
|
+
__all__ = [
|
10
|
+
"cGAN_SAGAN_Generator", "cGAN_SAGAN_Discriminator",
|
11
|
+
"cGAN_concat_SAGAN_Generator", "cGAN_concat_SAGAN_Discriminator",
|
12
|
+
"CcGAN_SAGAN_Generator", "CcGAN_SAGAN_Discriminator",
|
13
|
+
"ResNet18_embed", "ResNet34_embed", "ResNet50_embed", "model_y2h",
|
14
|
+
"ResNet34_regre_eval", "ResNet34_class_eval"
|
15
|
+
]
|
@@ -1,13 +1,14 @@
|
|
1
1
|
myosotis_researches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
myosotis_researches/CcGAN/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
myosotis_researches/CcGAN/internal/__init__.py,sha256=
|
3
|
+
myosotis_researches/CcGAN/internal/__init__.py,sha256=b-63yANNRQXgLF9k9yGdrm7mlULqGic1HTQTzg9wIME,209
|
4
4
|
myosotis_researches/CcGAN/internal/install_datasets.py,sha256=jJwLOZrDnHMrJSUhXxSIFobdeWK5N6eitPmjeBW9FyA,1144
|
5
|
+
myosotis_researches/CcGAN/internal/show_datasets.py,sha256=A8WBQ-C_q3TfQHwHOW95c5_84VVzzpUUZoG-SNzAhxU,276
|
5
6
|
myosotis_researches/CcGAN/internal/uninstall_datasets.py,sha256=7pxPZcSe9RHncF0I_4rf8ZdI7eQwv-sFVfxzSVZfYHQ,297
|
6
7
|
myosotis_researches/CcGAN/models_128/CcGAN_SAGAN.py,sha256=uYDngtHoB7frPg2Vs7YCFXeUh7Y7MjaAXbRWHXO_xvw,10629
|
7
8
|
myosotis_researches/CcGAN/models_128/ResNet_class_eval.py,sha256=wa5CPkYzrS0X6kZ6pGHM-GxcGNkSpBdTTqgy5dKVKkU,5131
|
8
9
|
myosotis_researches/CcGAN/models_128/ResNet_embed.py,sha256=HKSY-5WWa9jGniOgRoR1WOTfWhR1Dcj6cq2sgznZEbE,6344
|
9
10
|
myosotis_researches/CcGAN/models_128/ResNet_regre_eval.py,sha256=VJYJiiwrjf9DvfZrlwOMJJAPu3PlwgFgIddDaRlGsac,6190
|
10
|
-
myosotis_researches/CcGAN/models_128/__init__.py,sha256=
|
11
|
+
myosotis_researches/CcGAN/models_128/__init__.py,sha256=2knKAbmau6oUkzBPQgyOhhsOzFchnMcXlLP3VS3L07A,768
|
11
12
|
myosotis_researches/CcGAN/models_128/autoencoder.py,sha256=ugOwBNoSNP4-WiATVkhC4-igRjj6yEY91qU0egpX744,3827
|
12
13
|
myosotis_researches/CcGAN/models_128/cGAN_SAGAN.py,sha256=JDr0Ss5osf9m-u34bVN_PvMsvMXkmi2jwPOAnls6EOA,11240
|
13
14
|
myosotis_researches/CcGAN/models_128/cGAN_concat_SAGAN.py,sha256=GHAmrNjORXKu-8UqAdP-A5WG-_3BdQUmWsrWD1NX5-w,9634
|
@@ -15,7 +16,7 @@ myosotis_researches/CcGAN/models_256/CcGAN_SAGAN.py,sha256=ju1dBYhqxl722_eeUGc2m
|
|
15
16
|
myosotis_researches/CcGAN/models_256/ResNet_class_eval.py,sha256=tS5YxIpiFS9tDCNe2IDv1hTZNn40_JBD_nn97MfQJNI,5178
|
16
17
|
myosotis_researches/CcGAN/models_256/ResNet_embed.py,sha256=9OcMQ-8nuWEbEbWc9tGaWQtfV1hdnkl0PrTphoGX77c,6295
|
17
18
|
myosotis_researches/CcGAN/models_256/ResNet_regre_eval.py,sha256=tHAbRNM9XodyfPsu00ac5KMjcgRH8qdx8AtCN9QGXKc,6269
|
18
|
-
myosotis_researches/CcGAN/models_256/__init__.py,sha256=
|
19
|
+
myosotis_researches/CcGAN/models_256/__init__.py,sha256=2knKAbmau6oUkzBPQgyOhhsOzFchnMcXlLP3VS3L07A,768
|
19
20
|
myosotis_researches/CcGAN/models_256/autoencoder.py,sha256=Nv3eSWJVrWaOufoVGe04sZ_KiXFLtu3Y0asZcAdyyj0,4382
|
20
21
|
myosotis_researches/CcGAN/models_256/cGAN_SAGAN.py,sha256=wTHVkUcAp07n3lgweKFo6cqd91E_rEqgJrBDbBe6qrg,11510
|
21
22
|
myosotis_researches/CcGAN/models_256/cGAN_concat_SAGAN.py,sha256=ZmGEpprDDlFR3dG32LT3NH5yiA1WR8Hg26rcbz42aCQ,9807
|
@@ -49,8 +50,8 @@ myosotis_researches/CcGAN/utils/concat_image_vertical.py,sha256=97-SuE8ZWpaeBm_e
|
|
49
50
|
myosotis_researches/CcGAN/utils/install_datasets.py,sha256=1WAhrzaCsWqI6vbW0awyovU2nqAtJQAEfWOdIRPQ7Jo,1121
|
50
51
|
myosotis_researches/CcGAN/utils/make_h5.py,sha256=Q5OW1JA35ormmsrlAJp6XdC6x0uJBRNjsE31wM3zBiI,1422
|
51
52
|
myosotis_researches/CcGAN/utils/print_hdf5_structure.py,sha256=leaR8H3GhlX6EuIXDMh36xG2zBdV-XlJkaXBuoorl6I,320
|
52
|
-
myosotis_researches-0.0.
|
53
|
-
myosotis_researches-0.0.
|
54
|
-
myosotis_researches-0.0.
|
55
|
-
myosotis_researches-0.0.
|
56
|
-
myosotis_researches-0.0.
|
53
|
+
myosotis_researches-0.0.29.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
54
|
+
myosotis_researches-0.0.29.dist-info/METADATA,sha256=CiB6dB7zXx9Uvztj_doKSVYEM2-LDgw3pAHmZr4OD8A,765
|
55
|
+
myosotis_researches-0.0.29.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
56
|
+
myosotis_researches-0.0.29.dist-info/top_level.txt,sha256=zxAiMn5eyZNJM28MewTAkgi_RZJMbfWbzVR-KF0LdZE,20
|
57
|
+
myosotis_researches-0.0.29.dist-info/RECORD,,
|
File without changes
|
{myosotis_researches-0.0.27.dist-info → myosotis_researches-0.0.29.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|