asenella commited on
Commit
1f36050
·
1 Parent(s): cb60022

Uploading MMVAEPlus in asenella/ms_MMVAEPlus_beta_10_scale_False_seed_1

Browse files
Files changed (6) hide show
  1. README.md +13 -0
  2. decoders.pkl +3 -0
  3. encoders.pkl +3 -0
  4. environment.json +1 -0
  5. model.pt +3 -0
  6. model_config.json +1 -0
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - multivae
5
+ license: apache-2.0
6
+ ---
7
+
8
+ ### Downloading this model from the Hub
9
+ This model was trained with multivae. It can be downloaded or reloaded using the method `load_from_hf_hub`
10
+ ```python
11
+ >>> from multivae.models import AutoModel
12
+ >>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
13
+ ```
decoders.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d1db25119588e4bc04c01aba568545d6157443178998d378e1f19dbe70f2812
3
+ size 2140423
encoders.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d29567d77e634dcec738a991caa2e4b24b22465efe4677a0ed0398f7ade63c1e
3
+ size 4265296
environment.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "EnvironmentConfig", "python_version": "3.10"}
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1b478833574bcf4a4ff7ff44178633b62b8001392092b86d8c42d2c03d82970
3
+ size 6362407
model_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "MMVAEPlusConfig", "n_modalities": 2, "latent_dim": 5, "input_dims": {"mnist": [1, 28, 28], "svhn": [3, 32, 32]}, "uses_likelihood_rescaling": false, "rescale_factors": null, "decoders_dist": {"mnist": "laplace", "svhn": "laplace"}, "decoder_dist_params": {"mnist": {"scale": 0.75}, "svhn": {"scale": 0.75}}, "custom_architectures": ["encoders", "decoders"], "K": 1, "prior_and_posterior_dist": "laplace_with_softmax", "learn_shared_prior": false, "learn_modality_prior": true, "beta": 1.0, "modalities_specific_dim": 15, "reconstruction_option": "joint_prior"}