Aceticia commited on
Commit
5b0b3df
1 Parent(s): 813cc72

Uploading VQVAE in Aceticia/vqvae_voc_mooney

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:e3826dc6ee55d91d7ed6f54b8d3cb950a93951c0957fa078f4c0361aeb49ee8e
3
+ size 3426273
encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f19e3b2a6c302d8c483eda5ca928b1ad948b4a8b9493521038ada078667c492
3
+ size 2082935
environment.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "EnvironmentConfig", "python_version": "3.11"}
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a453f08891aa9cc0462cedc96780055c09be87cdc900d3e6206565df0134d58
3
+ size 5564446
model_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "VQVAEConfig", "input_dim": [1, 256, 256], "latent_dim": 64, "uses_default_encoder": false, "uses_default_decoder": false, "commitment_loss_factor": 0.25, "quantization_loss_factor": 1.0, "num_embeddings": 128, "use_ema": true, "decay": 0.99}