Earlier quoted context omitted.
Quick question -- can you tell me where you got that quote? It's not in the main blog or any of the launch communications that I can see.
The quote is from the technical report https://storage.googleapis.com/deepmind-media/gemma/gemma-re...
Gemma: New Open Models
541–543 of 543 posts
Re: Gemma: New Open Models
#542Earlier quoted context omitted.
> We are really excited to answer any questions you may have about our models. I cannot count how many times I've seen similar posts on HN, followed by tens of questions from other users, three of which actually get answered by the OP. This one seems to be no exception so far.
Sorry, doing our best here :)
Re: Gemma: New Open Models
#543Earlier quoted context omitted.
What prompts/settings do you use for Phi-2? I found it completely unusable for my cases. It fails to follow basic instructions (I tried several instruction-following finetunes as well, in addition to the base model), and it's been mostly like a random garbage generator for me. With Llama.cpp, constrained to JSON, it also often hangs because it fails to find continuations which satisfy the JSON grammar. I'm building a…
An update on my endeavour: so, model switching is very costly under llama.cpp (I have to switch between Llama and Phi2 because my GPU has low amounts of VRAM). And this switch (reloading the weights into VRAM) defeats the whole purpose of the optimization. Having only Llama on GPU without reloading takes less time than if I'd use Llama+Phi2. And Phi2 alone is pretty bad as a general purpose LLM. So I'm quite disappoi…