Created
August 25, 2022 08:08
-
-
Save universvm/54348bba9b9f962eef36ffa306cebe85 to your computer and use it in GitHub Desktop.
dataview template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Basics | |
```dataview | |
table tags as "Tags" | |
from "2. Notes" | |
WHERE contains(tags, "optimisation") | |
SORT file.name ASC | |
``` | |
### VAE | |
```dataview | |
table tags as "Tags" | |
from "2. Notes" | |
WHERE contains(tags, "vae") | |
SORT file.name ASC | |
``` | |
### Transformers | |
```dataview | |
table tags as "Tags" | |
from "2. Notes" | |
WHERE contains(tags, "attention") | |
SORT file.name ASC | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment