ランキングに戻る

ThilinaRajapakse/simpletransformers

Pythonsimpletransformers.ai

Transformers for Information Retrieval, Text Classification, NER, QA, Language Modelling, Language Generation, T5, Multi-Modal, and Conversational AI

transformerstext-classificationnamed-entity-recognitionquestion-answeringconversational-aiinformation-retrival
スター成長
スター
4.3k
フォーク
715
週間成長
Issue
44
2k4k
2023年1月2024年3月2025年5月2026年7月
成果物PyPIpip install simpletransformers
README

License Downloads

All Contributors

Simple Transformers

This library is based on the Transformers library by HuggingFace. Simple Transformers lets you quickly train and evaluate Transformer models. Only 3 lines of code are needed to initialize, train, and evaluate a model.

Supported Tasks:

  • Information Retrieval (Dense Retrieval)
  • (Large) Language Models (Training, Fine-tuning, and Generation)
  • Encoder Model Training and Fine-tuning
  • Sequence Classification
  • Token Classification (NER)
  • Question Answering
  • Language Generation
  • T5 Model
  • Seq2Seq Tasks
  • Multi-Modal Classification
  • Conversational AI

Citation

If you use Simple Transformers in your work, please cite:

@inproceedings{Rajapakse2024SimpleTransformers,
  author    = {Rajapakse, Thilina C. and Yates, Andrew and de Rijke, Maarten},
  title     = {Simple Transformers: Open-source for All},
  booktitle = {Proceedings of the 2024 Annual International ACM SIGIR
               Conference on Research and Development in Information
               Retrieval in the Asia Pacific Region},
  series    = {SIGIR-AP 2024},
  pages     = {209--215},
  year      = {2024},
  doi       = {10.1145/3673791.3698412},
  url       = {https://doi.org/10.1145/3673791.3698412},
  location  = {Tokyo, Japan}
}

Table of contents

Setup

With Conda

  1. Install Anaconda or Miniconda Package Manager from here
  2. Create a new virtual environment and install packages.
$ conda create -n st python pandas tqdm
$ conda activate st

Using Cuda:

$ conda install pytorch>=1.6 cudatoolkit=11.0 -c pytorch

Without using Cuda

$ conda install pytorch cpuonly -c pytorch
  1. Install simpletransformers.
$ pip install simpletransformers

Optional

  1. Install Weights and Biases (wandb) for tracking and visualizing training in a web browser.
$ pip install wandb

Usage

All documentation is now live at thilinarajapakse.github.io/simpletransformers

Simple Transformer models are built with a particular Natural Language Processing (NLP) task in mind. Each such model comes equipped with features and functionality designed to best fit the task that they are intended to perform. The high-level process of using Simple Transformers models follows the same pattern.

  1. Initialize a task-specific model
  2. Train the model with train_model()
  3. Evaluate the model with eval_model()
  4. Make predictions on (unlabelled) data with predict()

However, there are necessary differences between the different models to ensure that they are well suited for their intended task. The key differences will typically be the differences in input/output data formats and any task specific features/configuration options. These can all be found in the documentation section for each task.

The currently implemented task-specific Simple Transformer models, along with their task, are given below.

Task Model
Binary and multi-class text classification ClassificationModel
Conversational AI (chatbot training) ConvAIModel
Language generation LanguageGenerationModel
Language model training/fine-tuning LanguageModelingModel
Multi-label text classification MultiLabelClassificationModel
Multi-modal classification (text and image data combined) MultiModalClassificationModel
Named entity recognition NERModel
Question answering QuestionAnsweringModel
Regression ClassificationModel
Sentence-pair classification ClassificationModel
Text Representation Generation RepresentationModel
Document Retrieval RetrievalModel
  • Please refer to the relevant section in the docs for more information on how to use these models.
  • Example scripts can be found in the examples directory.
  • See the Changelog for up-to-date changes to the project.

A quick example

from simpletransformers.classification import ClassificationModel, ClassificationArgs
import pandas as pd
import logging


logging.basicConfig(level=logging.INFO)
transformers_logger = logging.getLogger("transformers")
transformers_logger.setLevel(logging.WARNING)

# Preparing train data
train_data = [
    ["Aragorn was the heir of Isildur", 1],
    ["Frodo was the heir of Isildur", 0],
]
train_df = pd.DataFrame(train_data)
train_df.columns = ["text", "labels"]

# Preparing eval data
eval_data = [
    ["Theoden was the king of Rohan", 1],
    ["Merry was the king of Rohan", 0],
]
eval_df = pd.DataFrame(eval_data)
eval_df.columns = ["text", "labels"]

# Optional model configuration
model_args = ClassificationArgs(num_train_epochs=1)

# Create a ClassificationModel
model = ClassificationModel(
    "roberta", "roberta-base", args=model_args
)

# Train the model
model.train_model(train_df)

# Evaluate the model
result, model_outputs, wrong_predictions = model.eval_model(eval_df)

# Make predictions with the model
predictions, raw_outputs = model.predict(["Sam was a Wizard"])

Experiment Tracking with Weights and Biases

  • Weights and Biases makes it incredibly easy to keep track of all your experiments. Check it out on Colab here: Open In Colab

Current Pretrained Models

For a list of pretrained models, see Hugging Face docs.

The model_types available for each task can be found under their respective section. Any pretrained model of that type found in the Hugging Face docs should work. To use any of them set the correct model_type and model_name in the args dictionary.


Contributors ✨

Thanks goes to these wonderful people (emoji key):


hawktang

💻

Mabu Manaileng

💻

Ali Hamdi Ali Fadel

💻

Tovly Deutsch

💻

hlo-world

💻

huntertl

💻

Yann Defretin

💻 📖 💬 🤔

Manuel

📖 💻

Gilles Jacobs

📖

shasha79

💻

Mercedes Garcia

💻

Hammad Hassan Tarar

💻 📖

Todd Cook

💻

Knut O. Hellan

💻 📖

nagenshukla

💻

flaviussn

💻 📖

Marc Torrellas

🚧

Adrien Renaud

💻

jacky18008

💻

Matteo Senese

💻

sarthakTUM

📖 💻

djstrong

💻

Hyeongchan Kim

📖

Pradhy729

💻 🚧

Iknoor Singh

📖

Gabriel Altay

💻

flozi00

📖 💻 🚧

alexysdussier

💻

Jean-Louis Queguiner

📖

aced125

💻

Laksh1997

💻

Changlin_NLP

💻

jpotoniec

💻

fcggamou

💻 📖

guy-mor

🐛 💻

Cahya Wirawan

💻

BjarkePedersen

💻

tekkkon

💻

Amit Garg

💻

caprone

🐛

Ather Fawaz

💻

Santiago Castro

📖

taranais

💻

Pablo N. Marino

💻 📖

Anton Kiselev

💻 📖

Alex

💻

Karthik Ganesan

💻

Zhylko Dima

💻

Jonatan Kłosko

💻

sarapapi

💻 💬

Abdul

💻

James Milliman

📖

Suraj Parmar

📖

KwanHong Lee

💬

Erik Fäßler

💻

Thomas Søvik

💬

Gagandeep Singh

💻 📖

Andrea Esuli

💻

DM2493

💻

Nick Doiron

💻

Abhinav Gupta

💻

Martin H. Normark

📖

Mossad Helali

💻

calebchiam

💻

Daniele Sartiano

💻

tuner007

📖

xia jiang

💻

Hendrik Buschmeier

📖

Mana Borwornpadungkitti

📖

rayline

💻

Mehdi Heidari

💻

William Roe

💻

Álvaro Abella Bascarán

💻

Brett Fazio

📖

Viet-Tien

💻

Bisola Olasehinde

💻 📖

William Chen

📖

Reza Ebrahimi

📖

gabriben

📖

Prashanth Kurella

💻

dopc

💻

Tanish Tyagi

📖 💻

kongyurui

💻

Andrew Lensen

💻

jinschoi

💻

Le Nguyen Khang

💻

Jordi Mas

📖

mxa

💻

MichelBartels

💻

Luke Tudge

📖

Saint

💻

deltaxrg

💻 📖

Fortune Adekogbe

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

If you should be on this list but you aren't, or you are on the list but don't want to be, please don't hesitate to contact me!


How to Contribute

How to Update Docs

The latest version of the docs is hosted on Github Pages, if you want to help document Simple Transformers below are the steps to edit the docs. Docs are built using Jekyll library, refer to their webpage for a detailed explanation of how it works.

  1. Install Jekyll: Run the command gem install bundler jekyll
  2. Visualizing the docs on your local computer: In your terminal cd into the docs directory of this repo, eg: cd simpletransformers/docs From the docs directory run this command to serve the Jekyll docs locally: bundle exec jekyll serve Browse to http://localhost:4000 or whatever url you see in the console to visualize the docs.
  3. Edit and visualize changes: All the section pages of our docs can be found under docs/_docs directory, you can edit any file you want by following the markdown format and visualize the changes after refreshing the browser tab.

Acknowledgements

None of this would have been possible without the hard work by the HuggingFace team in developing the Transformers library.

<div>Icon for the Social Media Preview made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com``

関連リポジトリ
microsoft/generative-ai-for-beginners

21 Lessons, Get Started Building with Generative AI

Jupyter NotebookMIT Licenseaichatgpt
113.3k60.8k
rasbt/LLMs-from-scratch

Implement a ChatGPT-like LLM in PyTorch from scratch, step by step

Jupyter NotebookOthergptlarge-language-models
amzn.to/4fqvn0D
99.5k15.3k
hiyouga/LlamaFactory

Unified Efficient Fine-Tuning of 100+ LLMs & VLMs (ACL 2024)

PythonPyPIApache License 2.0fine-tuningllama
llamafactory.readthedocs.io
73.4k9k
labmlai/annotated_deep_learning_paper_implementations

🧑‍🏫 60+ Implementations/tutorials of deep learning papers with side-by-side notes 📝; including transformers (original, xl, switch, feedback, vit, ...), optimizers (adam, adabelief, sophia, ...), gans(cyclegan, stylegan2, ...), 🎮 reinforcement learning (ppo, dqn), capsnet, distillation, ... 🧠

PythonPyPIMIT Licensedeep-learningdeep-learning-tutorial
nn.labml.ai
67.2k6.7k
hiyouga/LLaMA-Factory

Unified Efficient Fine-Tuning of 100+ LLMs & VLMs (ACL 2024)

PythonPyPIApache License 2.0fine-tuninglanguage-model
huggingface.co/papers/2403.13372
43.5k5.3k
rohitg00/ai-engineering-from-scratch

Learn it. Build it. Ship it for others.

PythonPyPIMIT Licenseagentsai
aiengineeringfromscratch.com
41.6k6.9k
deepset-ai/haystack

Open-source AI orchestration framework for building context-engineered, production-ready LLM applications. Design modular pipelines and agent workflows with explicit control over retrieval, routing, memory, and generation. Built for scalable agents, RAG, multimodal applications, semantic search, and conversational systems.

PythonPyPIApache License 2.0nlpquestion-answering
haystack.deepset.ai
26k2.9k
lucidrains/vit-pytorch

Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch

PythonPyPIMIT Licenseartificial-intelligenceattention-mechanism
25.4k3.5k
amusi/CVPR2026-Papers-with-Code

CVPR 2026 论文和开源项目合集

cvprcvpr2020
22.8k2.8k
huggingface/peft

🤗 PEFT: State-of-the-art Parameter-Efficient Fine-Tuning.

PythonPyPIApache License 2.0adapterdiffusion
huggingface.co/docs/peft
21.4k2.4k
amusi/CVPR2025-Papers-with-Code

CVPR 2025 论文和开源项目合集

cvprcvpr2020
19.1k2.6k
amusi/CVPR2024-Papers-with-Code

CVPR 2024 论文和开源项目合集

cvprcvpr2020
18.7k2.6k