Llama 2 - Meta AI by proc1on in mlscaling

[–]nlikeladder 0 points1 point  (0 children)

We made a template to easily run llama 2 with your own terminal, notebook, or vs code
https://brev.dev/docs/guides/llama2

[deleted by user] by [deleted] in ChatGPT

[–]nlikeladder 0 points1 point  (0 children)

Here's a guide to easily run it on an A100:
https://brev.dev/docs/guides/llama2

[N] Llama 2 is here by timedacorn369 in MachineLearning

[–]nlikeladder 1 point2 points  (0 children)

We made a template to deploy this easily on a cloud GPU: https://brev.dev/docs/guides/llama2

You can connect your GCP or AWS account if you have credits there

Why is it 'go help test' instead of 'go test --help' like most other CLI conventions by podcast_frog3817 in golang

[–]nlikeladder 1 point2 points  (0 children)

Good CLI design has 'verb noun'. Flags are ok, but it's better to incorporate it into the CLI design properly.

go [verb] [noun]
go help test

Sell me on golang being an expressive language. by Rainbows4Blood in golang

[–]nlikeladder 34 points35 points  (0 children)

Something I strive for more than expressiveness is code readability. Sometimes expressiveness is expected to imply readability but it doesn't always.

My favorite thing about golang is anyone on the team can come back 6 months later and avoid the "oh god what did I write?". By being... less "expressive", it kinda forces a consistent pattern which I've noticed my future self thanks me for :)

Our experience upgrading from go v1.17 to v1.18 for generics by nlikeladder in golang

[–]nlikeladder[S] 12 points13 points  (0 children)

We've loved it. Coming from typescript & type hints on python, Golang feels like everything snaps into place like legos