Uploading MMVAE in asenella/reproducing_mmvae_2
Browse files- README.md +13 -0
- decoders.pkl +3 -0
- encoders.pkl +3 -0
- model.pt +3 -0
- 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:67402f085c8f1a1cf16006cccf37e83ebdcaa0b182f184ed7592d603867531a5
|
3 |
+
size 2143155
|
encoders.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e5ab3e85e300b6bbf0e7dfbb1e3b392583cf6e5da9226fbe84368a0bb6992e50
|
3 |
+
size 2337566
|
model.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21ce48006e27c2fcbf80270f4da3a00b81cd0240d1e5d5cdb9f05383d252cf97
|
3 |
+
size 4437003
|
model_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "MMVAEConfig", "n_modalities": 2, "latent_dim": 20, "input_dims": {"mnist": [1, 28, 28], "svhn": [3, 32, 32]}, "uses_likelihood_rescaling": true, "decoders_dist": {"mnist": "laplace", "svhn": "laplace"}, "decoder_dist_params": {}, "custom_architectures": ["encoders", "decoders"], "K": 30, "prior_and_posterior_dist": "laplace_with_softmax", "learn_prior": true}
|