clementchadebec commited on
Commit
06aeb60
1 Parent(s): ed7a217

Uploading VAE in clementchadebec/reproduced_vae

Browse files
Files changed (6) hide show
  1. README.md +13 -0
  2. decoder.pkl +3 -0
  3. encoder.pkl +3 -0
  4. environment.json +1 -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
+ - 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:f854c08611dc912fae973bb6257bb49bf3119bfe3464bd90ee1003d2c5f77be9
3
+ size 1970373
encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d370507594251d5679a6ccdcde466a5d69046cdf7a3181b41e47b760ffede6a
3
+ size 2032124
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"}