add ref to README in the app
Browse files
README.md
CHANGED
|
@@ -18,6 +18,8 @@ Official release of:
|
|
| 18 |
|
| 19 |
These models were trained on MNIST only (digits), but were found to generate new kinds of symbols, see the references for more details.
|
| 20 |
|
|
|
|
|
|
|
| 21 |

|
| 22 |
|
| 23 |
# Install requirements
|
|
|
|
| 18 |
|
| 19 |
These models were trained on MNIST only (digits), but were found to generate new kinds of symbols, see the references for more details.
|
| 20 |
|
| 21 |
+
Check <https://huggingface.co/spaces/mehdidc/ae_gen/blob/main/README.md> for more details.
|
| 22 |
+
|
| 23 |

|
| 24 |
|
| 25 |
# Install requirements
|
app.py
CHANGED
|
@@ -44,6 +44,10 @@ This interface supports generation of samples from:
|
|
| 44 |
These models were trained on MNIST only (digits), but were found to generate new kinds of symbols, see the references for more details.
|
| 45 |
|
| 46 |
NB: `nb_active` is only used for the Dense K-Sparse, specifying nb of activations to keep in the last layer.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
"""
|
| 48 |
iface = gr.Interface(
|
| 49 |
fn=gen,
|
|
|
|
| 44 |
These models were trained on MNIST only (digits), but were found to generate new kinds of symbols, see the references for more details.
|
| 45 |
|
| 46 |
NB: `nb_active` is only used for the Dense K-Sparse, specifying nb of activations to keep in the last layer.
|
| 47 |
+
|
| 48 |
+
Check <https://huggingface.co/spaces/mehdidc/ae_gen/blob/main/README.md> for
|
| 49 |
+
more details.
|
| 50 |
+
|
| 51 |
"""
|
| 52 |
iface = gr.Interface(
|
| 53 |
fn=gen,
|