Open-Source Generative AI
Abacus.AI is committed to open-source AGI and has significantly contributed to open-source AI and LLMs. Our research is open-sourced, reviewed, and published in top AI and ML conferences.
In addition, our open-source contributions to LLMs have led to several other open-source labs adopting some of our techniques and pushing the boundaries of enterprise and SOTA AI.
Here are the key contributions from Abacus AI to open-source:
 
Our Models
Abacus Smaug Line
Smaug is our most recent open-source line of models, and has set a new standard for open-source, topping the HuggingFace OpenLLM leaderboard with an accuracy of 80.48%, nearly 2% better than the next best model. We have introduced several Smaug fine tunes, with the flagship model being Smaug-72B. This model is a fine-tuned version of Qwen-72B, enhanced through our novel Direct Preference Optimization-Positive (DPOP) method.
Unlike traditional DPO, which focuses on improving model performance at the risk of reducing completion likelihood, DPOP introduces a new term in the loss function that penalizes any reduction in the likelihood of positive outcomes. This innovation addresses a critical shortcoming in LLM fine-tuning and significantly improves model reliability and effectiveness.
We also applied these techniques to make Smaug-34B and Smaug-Mixtral, both of which are leaders in performance in their classes.
Smaug-72B - The World’s Best Open-Source LLM!
GPT - 3.5 (PROP) GEMINI PRO (PROP) MISTRAL - SMALL (PROP) MISTRAL - MEDIUM (PROP) SMAUG - 72B (PROP)
MMLU 70.0 71.8 70.6 75.3 77.15
HellaSwag 85.5 84.7 86.7 88.9 89.27
Arc 85.2 unknown 85.8 88.9 76.02
WinoGrade 81.6 unknown 81.2 88 85.05
GSM-8K 57.1 unknown 58.4 66.7 78.7
Truthful QA unknown unknown unknown unknown 76.67
 
Arka Pal, Deep Karkhanis, Samuel Dooley, Manley Roberts, Siddartha Naidu, Colin White
 
Abacus Giraffe
Open-source LLMs have continued to proliferate within the AI landscape and have shown comparable performance to the close-sourced LLMs of OpenAI, Google, and others. However, open-source LLMs often come with a limited context length, limiting their utility for creating custom LLMs on your knowledge base. Since you are constrained by the amount of proprietary data you can send in a single API call, a bigger context length is crucial for various tasks.
Many methods have been proposed for context-length extrapolation; in our extensive research, we tested each approach thoroughly and proposed two new approaches. One of these approaches is truncation, which has shown promising results.
Along with this research, we released Giraffe. Based on Llama-2, this model is the world’s first open-source LLM capable of handling a 32k context. This capability is vital for various applications, from complex information retrieval to sustained conversational AI and code generation on an existing use case. On an enterprise level, it can function as an AI brain for your business, boosting productivity, improving decision-making, and providing key insights.
 
Arka Pal, Deep Karkhanis, Manley Roberts, Samuel Dooley, Arvind Sundararajan, Siddartha Naidu
arXiv Preprint
Abacus Professor
TheProfessor showcases the innovative potential of merging different LLMs, leveraging their unique strengths to create composite models that excel across various domains. Developed with mergekit using pre-trained language models, TheProfessor provides broad conversational, reasoning, scientific, medical, and mathematical skills.
It is also helpful in concept development, from conception to implementation, including code and writing/reviewing/revising papers with citations.
Abacus Liberated-Qwen
Open-source LLMs are notorious for not following system prompts, which makes them less suited for real-world usage, including being more vulnerable to end user misuse. To fix this critical problem, we introduce Liberated-Qwen1.5-72B, the most performant uncensored model in the world.
Liberated was trained using open-source datasets, including SystemChat, a new dataset we created. (You can read more about this dataset below.) Liberated-Qwen performs the best out of the open-source models on the HumanEval leaderboard. It has an MMLU score of 77+, the best score an open-source model can get.
While this model is entirely uncensored and liberated, it demonstrates strong adherence to system prompt following, and thus allows you to set bounds on its behavior with an appropriate system prompt.
Our Datasets
DPO
We used three datasets to create our Smaug series of models. These datasets were meant to be used to fine-tune LLMs using the DPOP loss function. Arc_DPO_FewShot was used to test the level of understanding of science at the grade-school level. HellaSwag_DPO_FewShot contains common sense inference questions that LLMs commonly struggle with. MetaMath_DPO_Fewshot was used to measure math and reasoning skills in an LLM and to align models toward being precise in the calculation.
SystemChat
SystemChat is a dataset with 7000 synthetic conversations generated with Mistral-Medium and Dolphin-2.7-mixtral-8x7b. It was designed to teach model compliance to the system prompt over long multiturn conversations, even with unusual or mechanical system prompts. Fine-tuning with this dataset makes it far more usable and harder to jailbreak. No guardrails or censorship are added to the dataset, and you can implement your own alignment layer.
WikiQA
The WikiQA task is the task of answering a question based on the information given in a Wikipedia document. We have selected large Wikipedia documents and truncated them to get multiple versions of the same document sizes varying between 2000 to 16000 tokens. Each size of document also had multiple versions which places the question and answer text at different locations.
However, a Wikipedia based dataset could correctly answer from its pretrained corpus and not from context. To combat this, we created an “altered” dataset, where the data only consists of questions which have numerical answers. This ensures that if an LLM recollects from its pretrained corpus, it gives a wrong answer.
Other Datasets
We also created MetaMathFewShot, a new few-shot version of the popular MetaMath dataset. This allows the model to understand the concept of few-shot prompting. Our LongChat-Lines was used to evaluate the performance of a model fine-tuned to operate on longer contexts.