Downloads · 30 days
11
34% of all-time downloads
falkne/cogency
cogency is a machine learning model from falkne. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for adapter-transformers.
An adapter for the roberta-base model that was trained on the argument/quality dataset and includes a prediction head for classification.
Downloads · 30 days
11
34% of all-time downloads
All-time downloads
32
Public
Repo size
6 MB
Likes
0
Public
Click a slice to open those files.
.bin6 MB · 100%
From the Hugging Face model README
falkne/cogency for roberta-baseAn adapter for the roberta-base model that was trained on the argument/quality dataset and includes a prediction head for classification.
This adapter was created for usage with the adapter-transformers library.
First, install adapter-transformers:
pip install -U adapter-transformers
Note: adapter-transformers is a fork of transformers that acts as a drop-in replacement with adapter support. More
Now, the adapter can be loaded and activated like this:
from transformers import AutoAdapterModel
model = AutoAdapterModel.from_pretrained("roberta-base")
adapter_name = model.load_adapter("falkne/cogency", source="hf", set_active=True)