Skip to content

Instantly share code, notes, and snippets.

@universvm
Created August 25, 2022 08:08
Show Gist options
  • Save universvm/54348bba9b9f962eef36ffa306cebe85 to your computer and use it in GitHub Desktop.
Save universvm/54348bba9b9f962eef36ffa306cebe85 to your computer and use it in GitHub Desktop.
dataview template
### 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