Uploading JNFDcca in asenella/ms_config_1_JNFDcca_5arluctk
Browse files- README.md +13 -0
- dcca_networks.pkl +3 -0
- decoders.pkl +3 -0
- environment.json +1 -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 |
+
```
|
dcca_networks.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4278aab29a90cc67edaef9b9ca354e98e8e2f723d40056b0f8695cfc60423754
|
3 |
+
size 2139182
|
decoders.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c6fc9f962c14d301f18d434a488927cd956d8d2a5ed5409b3b38208c913f97a
|
3 |
+
size 2140577
|
environment.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "EnvironmentConfig", "python_version": "3.10"}
|
joint_encoder.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:918b92e3f986b42421548990867205d3b2e52bf4738a62da0390cf4febd62ba6
|
3 |
+
size 2447602
|
model.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:320de665fb81c1d4d1d84dfbae822e4df59cbd1ebb79b5ff54006675b06353fb
|
3 |
+
size 10300634
|
model_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "JNFDccaConfig", "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": ["dcca_networks", "decoders", "joint_encoder"], "warmup": 100, "nb_epochs_dcca": 150, "embedding_dcca_dim": 10, "use_all_singular_values": false, "apply_rescaling_dcca": false, "beta": 2.5, "divide_by_prior": true}
|