antoinelyset / openhermes-2-mistral-7b

Simple version of https://huggingface.co/teknium/OpenHermes-2-Mistral-7B

  • Public
  • 241 runs
  • GitHub
  • Paper
  • License

Run time and cost

This model runs on Nvidia A40 (Large) GPU hardware. We don't yet have enough runs of this model to provide performance information.

Readme

Adaptation of https://huggingface.co/teknium/OpenHermes-2-Mistral-7B, this is my first test so it maybe a bit too simple.

I preferred to use OpenAI prompt format, and let apply_chat_template do the work:

[
  {"role": "system", "content": "You are a helpful assistant."},
  {"role": "user", "content": "Who won the world series in 2020?"},
  {"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
  {"role": "user", "content": "Where was it played?"}
]