asenella commited on
Commit
f705653
1 Parent(s): 85449c0

Uploading JMVAE in asenella/reproduce_jmvae_seed_0

Browse files
Files changed (6) hide show
  1. README.md +13 -0
  2. decoders.pkl +3 -0
  3. encoders.pkl +3 -0
  4. joint_encoder.pkl +3 -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:42ee368258e21bbf588981cc522ab5b49a673818ab12548ed4b4cefe76218618
3
+ size 4020768
encoders.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86fbc12e6968a79fbad7112f25b6ee0486b3398cd862e4988605b3fc5d4cb2bf
3
+ size 4283434
joint_encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c8990c8578221c673ecb017f4037e19d23a468dd9f381da169b97fcd4dbc2fa
3
+ size 4008176
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd2f3484b4a958c1c903dd5c39e717461ddd03c128119b3821b9bd30e13ca38f
3
+ size 12257571
model_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "JMVAEConfig", "n_modalities": 2, "latent_dim": 64, "input_dims": {"images": [1, 28, 28], "labels": [1]}, "uses_likelihood_rescaling": false, "rescale_factors": null, "decoders_dist": {"images": "bernoulli", "labels": "categorical"}, "decoder_dist_params": {}, "custom_architectures": ["encoders", "decoders", "joint_encoder"], "alpha": 0.1, "warmup": 200}