antoinelyset / openhermes-2-mistral-7b

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

  • Public
  • 241 runs
  • GitHub
  • Paper
  • License

Input

Output

Run time and cost

This model runs on Nvidia A40 (Large) GPU hardware.

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?"}
]