Pipeline won't load model

I am trying to load the model MetaMath-7B-V1.0
(https://huggingface.co/meta-math/MetaMath-7B-V1.0) via the Pipeline.

I do it with the usual code one can find on the model page:

from transformers import pipeline
pipe = pipeline(“text-generation”, model=“meta-math/MetaMath-7B-V1.0”)

The first line works fine. However, the second just has the effect that the shell restarts. What is happening here? I checked it with other models, for some it works, for some it does not.