clementchadebec
commited on
Commit
•
fb6637a
1
Parent(s):
0546eb1
Uploading VAE in clementchadebec/reproduced_hvae
Browse files- README.md +10 -0
- decoder.pkl +3 -0
- encoder.pkl +3 -0
- environment.json +1 -0
- model.pt +3 -0
- model_config.json +1 -0
README.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language: en
|
3 |
+
tags:
|
4 |
+
- pythae
|
5 |
license: apache-2.0
|
6 |
---
|
7 |
+
|
8 |
+
### Downloading this model from the Hub
|
9 |
+
This model was trained with pythae. It can be downloaded or reloaded using the method `load_from_hf_hub`
|
10 |
+
```python
|
11 |
+
>>> from pythae.models import AutoModel
|
12 |
+
>>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
|
13 |
+
```
|
decoder.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0b07b1932669e5b4c37ba96e85daf77d78bc0db0b95cee8ad15932b11bd1dd9
|
3 |
+
size 1970197
|
encoder.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04b9dd13effae96ca5ec5d42bb491425853933d7fcdd61548b812c8869f6a49d
|
3 |
+
size 2031939
|
environment.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "EnvironmentConfig", "python_version": "3.7"}
|
model.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d88b6990d454e63e67b6adc14caa0f20f23ddcd3cbc346b71c534979166a7d43
|
3 |
+
size 3995067
|
model_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "VAEConfig", "input_dim": [784], "latent_dim": 40, "uses_default_encoder": false, "uses_default_decoder": false, "reconstruction_loss": "bce"}
|