dscarvalho
commited on
Commit
•
a29e263
1
Parent(s):
1e9b264
Uploading VAE in neuro-symbolic-ai/eb-langvae-bert-gpt2-l128
Browse files- README.md +13 -0
- decoder.pkl +3 -0
- encoder.pkl +3 -0
- environment.json +1 -0
- model.pt +3 -0
- 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:539661082c69b24d417081c364959d224fc875b0719242041ff159ffdf2c4a4d
|
3 |
+
size 31714156
|
encoder.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:422498a7179a5ebe02a2f5e654c030a670d6b430536d600c90cf4735c61abf9c
|
3 |
+
size 2144370
|
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:545a163d63b0eb76c6863583a493b0b0707a6525acc7626ac8e4185bcd465e5c
|
3 |
+
size 32497351
|
model_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "VAEConfig", "input_dim": [32, 50257], "latent_dim": 128, "uses_default_encoder": false, "uses_default_decoder": false, "reconstruction_loss": "mse"}
|