Uploading JNFGMC in asenella/ms_config_1_JNFGMC_o7gx866a
Browse files- README.md +13 -0
- decoders.pkl +3 -0
- environment.json +1 -0
- gmc_model.pkl +3 -0
- joint_encoder.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:d4ef08ee1a17b3b90479cce16c0112d59583f1cd99272ed3a225c9664583134e
|
| 3 |
+
size 2140565
|
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:6860adf9113a1321b9452121b1dc850daab4230e7b5e1aff170914096d88fd0c
|
| 3 |
+
size 2834489
|
joint_encoder.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b535f19dab46a7d002af4954f85e924b33e9948acea53ecb0d1fa5c456eca706
|
| 3 |
+
size 2447602
|
model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d079c80dd618ba76cfe005dea12ef1adb662a0e1e4dc1911b2bdd019dc5ff5bd
|
| 3 |
+
size 10984578
|
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}}, "custom_architectures": ["gmc_model", "decoders", "joint_encoder"], "warmup": 100, "annealing": false, "alpha": 0.1, "nb_epochs_gmc": 150, "beta": 1.0, "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"}, "logits_to_std": "standard", "add_reconstruction_terms": false}
|