asenella commited on
Commit
d680d6d
1 Parent(s): d56066c

Uploading JNFGMC in asenella/ms_config_1_JNFGMC_xn8bzta3

Browse files
Files changed (7) hide show
  1. README.md +13 -0
  2. decoders.pkl +3 -0
  3. environment.json +1 -0
  4. gmc_model.pkl +3 -0
  5. joint_encoder.pkl +3 -0
  6. model.pt +3 -0
  7. 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:b87ea89fd5f50b8c66afbf58570b6324bc9c975004bfefab431dc8661446cd25
3
+ size 2140567
environment.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "EnvironmentConfig", "python_version": "3.10"}
gmc_model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5db8134e3bb43df10d26f67d2c2dc6eb2efb1a30aebc9b8257a093384c362093
3
+ size 2191564
joint_encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cc15b5c72ed2d28e8659b7e57ad968a69cb63f36b72a1659b6785f25f1611d8
3
+ size 2447610
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04b0c1fa3c1a02a222cf5e429cead822ee107de2966602823f204c94f7efdad4
3
+ size 10342282
model_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "JNFGMCConfig", "n_modalities": 2, "latent_dim": 20, "input_dims": {"mnist": [1, 28, 28], "svhn": [3, 32, 32]}, "uses_likelihood_rescaling": true, "rescale_factors": null, "decoders_dist": {"mnist": "laplace", "svhn": "laplace"}, "decoder_dist_params": {"mnist": {"scale": 0.75}, "svhn": {"scale": 0.75}}, "logits_to_std": "standard", "custom_architectures": ["gmc_model", "decoders", "joint_encoder"], "warmup": 100, "annealing": false, "alpha": 0.1, "nb_epochs_gmc": 150, "beta": 2.5, "gmc_config": {"name": "GMCConfig", "n_modalities": 2, "input_dims": {"mnist": [1, 28, 28], "svhn": [3, 32, 32]}, "common_dim": 10, "latent_dim": 10, "temperature": 0.1, "custom_architectures": ["processors", "shared_encoder"], "loss": "between_modality_pairs"}, "add_reconstruction_terms": false, "divide_by_prior": true}