clementchadebec
commited on
Commit
•
fe3241f
1
Parent(s):
8511f45
Update README.md
Browse files
README.md
CHANGED
@@ -2,12 +2,21 @@
|
|
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="
|
13 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
language: en
|
3 |
tags:
|
4 |
- pythae
|
5 |
+
- reproducibility
|
6 |
license: apache-2.0
|
7 |
---
|
8 |
|
|
|
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="clementchadebec/reproduced_wrapped_poincare_vae")
|
13 |
```
|
14 |
+
|
15 |
+
## Reproducibility
|
16 |
+
This trained model reproduces the results of the official implementation of [1].
|
17 |
+
|
18 |
+
| Model | Dataset | Metric | Obtained value | Reference value |
|
19 |
+
|:---:|:---:|:---:|:---:|:---:|
|
20 |
+
| PoincareVAE | MNIST | NLL | 102.06 (0.00) | 101.47 (0.01) |
|
21 |
+
|
22 |
+
[1] Mathieu, E., Le Lan, C., Maddison, C. J., Tomioka, R., & Teh, Y. W. (2019). Continuous hierarchical representations with poincaré variational auto-encoders. Advances in neural information processing systems, 32.
|