asenella commited on
Commit
1206d52
1 Parent(s): 01c37eb

Uploading JNFGMC in asenella/ms_config_1_JNFGMC_irqwi18o

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:fa573cb6bfa8f5dc430aa869e108304398e526f94daa389e5b16691d5428b838
3
+ size 2140573
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:5fa12a8643b9495b296d669f3b4efbc5cc447d24cf98ffd1d6674c1d66ce72f9
3
+ size 2191574
joint_encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:077dc1ee7b177d4f9f654e0df2f2d7b655ec4f3b3fcf918bb65ad32d591c311a
3
+ size 2447608
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b37366a51f229057434ad7b3965310a2df232e8c030bb16d67cccc779aba72e
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}