logoalt Hacker News

lukebechtelyesterday at 2:07 AM1 replyview on HN

so it's:

output = layers(layers(layers(layers(input))))

instead of the classical:

output = layer4(layer3(layer2(layer1(input))))


Replies

oofbeyyesterday at 3:38 AM

Yeah if layers() is a shortcut for layer4(layer3(layer2(layer1(input)))). But sometimes it’s only

output = layers(input)

Or

output = layers(layers(input))

Depends on how difficult the token is.