dscarvalho commited on
Commit
146e629
·
verified ·
1 Parent(s): 8543058

Uploading VAE in neuro-symbolic-ai/eb-langcvae-bert-base-cased-gpt2-srl-l128

Browse files
Files changed (7) hide show
  1. README.md +13 -0
  2. decoder.pt +3 -0
  3. decoder_cfg.json +1 -0
  4. encoder.pt +3 -0
  5. encoder_cfg.json +1 -0
  6. environment.json +1 -0
  7. 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.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b90019adcdc537978fa4a330d7b963e739f2b6541a2bb78026c7248295e7d3f8
3
+ size 481746126
decoder_cfg.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"model_path": "gpt2", "latent_size": 128, "max_len": 32, "device_map": null}
encoder.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0638ba248e2909ce3ba03fe2dad226b324a87fa64e4f51c6d035a4b84e2d98f
3
+ size 858396
encoder_cfg.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"model_path": "bert-base-cased", "latent_size": 128, "caching": true}
environment.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "EnvironmentConfig", "python_version": "3.11"}
model_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "VAEConfig", "input_dim": null, "latent_dim": 128, "uses_default_encoder": false, "uses_default_decoder": false, "reconstruction_loss": "mse"}