Edit model card

Now quantized as Q5_0!

A huge thank you to the contributors of this beautiful model!

About GGUF

GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.

Here is an incomplete list of clients and libraries that are known to support GGUF:

  • llama.cpp. The source project for GGUF. Offers a CLI and a server option.
  • text-generation-webui, the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
  • KoboldCpp, a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
  • GPT4All, a free and open source local running GUI, supporting Windows, Linux and macOS with full GPU accel.
  • LM Studio, an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. Linux available, in beta as of 27/11/2023.
  • LoLLMS Web UI, a great web UI with many interesting and unique features, including a full model library for easy model selection.
  • Faraday.dev, an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
  • llama-cpp-python, a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
  • candle, a Rust ML framework with a focus on performance, including GPU support, and ease of use.
  • ctransformers, a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. Note, as of time of writing (November 27th 2023), ctransformers has not been updated in a long time and does not support many recent models.

OpenHermes-Llama-3B

An OpenLlama-3B finetune for role-play, instruction following, and code generation

Logo AI Generated by Dalle

For a guide on how this was fine tuned, check out this blog post.

Model description

OpenHermes-Lllama_3B is a finetune of the Hermes dataset that has a fully open source dataset! It was trained on 15,000 entries of primarily GPT-4 generated data, from open datasets across the AI landscape, including:

  • GPTeacher - General Instruct, Roleplay v1, Roleplay v2, and Code Instruct Datasets, by Teknium
  • WizardLM (v1, evol_instruct 70k), by WizardLM Team/nlpxucan
  • Airoboros GPT-4 (v1.0), by JonDurbin
  • Camel-AI's domain expert datasets, by the Camel-AI Team
  • CodeAlpaca, by Sahil2801
  • GPT4-LLM and Unnatural Instructions, by Microsoft

OpenHermes-Lllama-3B has improved very much improved coding abilities and general instruction following than the OpenLlama-3B base model. You can see the before and after outputs comparison below.

Example Outputs

Writing Code

Q: Write a Fast API endpoint with ratelimiting

OpenHermes-Llama-3B Output

Base Model Output

*Create a new FastAPI app

*Create a new endpoint

*Create a new ratelimit middleware

*Create a new ratelimit rule

*Create a new ratelimit backend

*Create a new ratelimit backend

Planning an Itinerary

Q: Create a travel itinery for italy for 3 days for me.

OpenHermes-Llama-3B Output

Hi,

I am happy to help you create an itinery for Italy for 3 days. Here is an example itinery: Day 1:

Morning: Arrive in Rome, check into your hotel.

Afternoon: Visit the Colosseum, the Roman Forum, and the Pantheon.

Evening: Have a dinner at a local restaurant and enjoy the nightlife in Rome.

Day 2:

Morning: Visit the Vatican Museums, St. Peter's Basilica, and the Sistine Chapel.

Afternoon: Take a guided tour of the Italian capital.

Evening: Have a dinner at a local restaurant and enjoy the nightlife in Rome.

Day 3:

Morning: Visit the Fontana di Trevi, the Pantheon, and the Colosseum.

Afternoon: Take a guided tour of the Italian capital.

Evening: Have a dinner at a local restaurant and enjoy the nightlife in Rome.

You can also add visits to other attractions such as the Capitoline Museums, the Palatine Hill, and the Spanish Steps.

I hope this itinery helps you plan your trip to Italy. Let me know if you have any questions or if you need any further assistance.

Base Model Output

Hi, I am a travel agent and I can help you with your travel itinerary. I can help you with the following:

  1. Flight booking
  2. Hotel booking
  3. Car rental
  4. Tour booking
  5. Visa
  6. Travel insurance
  7. Airport transfers
  8. Airport pick up
  9. Airport drop off
  10. Airport lounge
  11. Airport lounge pick up
  12. Airport lounge drop off

Explaining Concepts

Q: Explain golang structs

OpenHermes-Llama-3B Output

A golang struct is a way to define a data type in Go. It is a collection of fields, each of which is a value of a specific type. The fields are arranged in a hierarchy and are connected using interfaces. Example:

type User struct {
    Name  string
    Age   int
    Email string
}

In this example, the User struct contains a Name field, an Age field, an Email field, and a few other fields. The Name field is of type string, the Age field is of type int, and the Email field is of type string. The User struct is connected to other structs through interfaces, such as the interface for the User type. The main advantage of structs in Go is that they can be used to represent data in a way that is more flexible and easier to use than traditional arrays or maps. Structs also allow for more complex data structures to be created without the need for nested arrays or maps. Here's an example of how to use a User struct: package main

import (
    "fmt"
    "strings"
)

type User struct {
    Name  string
    Age   int
    Email string
}

func main() {
    user1 := User{"John", 25, "john@example.com"}
    user2 := User{"Mary", 22, "mary@example.com"}

    // Print the users' names and ages
    fmt.Printf("User 1: %s (%d)\nUser 2: %s (%d)\n", user1.Name, user1.Age, user2.Name, user2.Age)

    // Print the users' emails separated by commas
    email1 := user1.Email
    email2 := user2.Email
    fmt.Printf("User 1's email: %s\nUser 2's email: %s\n", email1, email2)
}

In this example, the User struct is used to represent two different users. The Name field is used to store the users' names, the Age field is used to store their ages, and the Email field is used to store their emails. The main function prints out the users' names and ages, along with their emails separated by commas. In summary, a golang struct is a way to define data types in Go. It is a collection of fields, each of which is a value of a specific type. The fields are arranged in a hierarchy and are connected through interfaces. The main advantage of structs in Go is that they can be used to represent data in a way that is more flexible and easier to use than traditional arrays or maps.

Base Model Output

*A struct is a named collection of variables.

Benchmark Comparison

HumanEval

Model pass@1
openllama-3b-v2 (base) 8.1%
openhermes-llama-3b (finetune) 9.8%
Downloads last month
59
GGUF
Model size
3.43B params
Architecture
llama
Unable to determine this model's library. Check the docs .

Quantized from

Dataset used to train gultar/OpenHermes-Llama-3b-GGUF