Argilla
Annotating data using Argilla.
Last updated
Annotating data using Argilla.
Last updated
Argilla is a collaboration tool for AI engineers and domain experts who need to build high-quality datasets for their projects. It enables users to build robust language models through faster data curation using both human and machine feedback, providing support for each step in the MLOps cycle, from data labeling to model monitoring.
Argilla distinguishes itself for its focus on specific use cases and human-in-the-loop approaches. While it does offer programmatic features, Argilla's core value lies in actively involving human experts in the tool-building process, setting it apart from other competitors.
If you need to label textual data as part of your ML workflow, that is the point at which you could consider adding the Argilla annotator stack component as part of your ZenML stack.
We currently support the use of annotation at the various stages described in the main annotators docs page. The Argilla integration currently is built to support annotation using a local (Docker-backed) instance of Argilla as well as a deployed instance of Argilla. There is an easy way to deploy Argilla as a Hugging Face Space, for instance, which is documented in the Argilla documentation.
The Argilla Annotator flavor is provided by the Argilla ZenML integration. You need to install it to be able to register it as an Annotator and add it to your stack:
You can either pass the api_key
directly into the zenml annotator register
command or you can register it as a secret and pass the secret name into the command. We recommend the latter approach for security reasons. If you want to take the latter approach, be sure to register a secret for whichever artifact store you choose, and then you should make sure to pass the name of that secret into the annotator as the --authentication_secret
. For example, you'd run:
(Visit the Argilla documentation and interface to obtain your API key.)
Then register your annotator with ZenML:
When using a deployed instance of Argilla, the instance URL must be specified without any trailing /
at the end. If you are using a Hugging Face Spaces instance and its visibility is set to private, you must also set the headers
parameter which would include a Hugging Face token. For example:
Finally, add all these components to a stack and set it as your active stack. For example:
Now if you run a simple CLI command like zenml annotator dataset list
this should work without any errors. You're ready to use your annotator in your ML workflow!
ZenML supports access to your data and annotations via the zenml annotator ...
CLI command. We have also implemented an interface to some of the common Argilla functionality via the ZenML SDK.
You can access information about the datasets you're using with the zenml annotator dataset list
. To work on annotation for a particular dataset, you can run zenml annotator dataset annotate <dataset_name>
. This will open the Argilla web interface for you to start annotating the dataset.
Our Argilla annotator component inherits from the BaseAnnotator
class. There are some methods that are core methods that must be defined, like being able to register or get a dataset. Most annotators handle things like the storage of state and have their own custom features, so there are quite a few extra methods specific to Argilla.
The core Argilla functionality that's currently enabled includes a way to register your datasets, export any annotations for use in separate steps as well as start the annotator daemon process. (Argilla requires a server to be running in order to use the web interface, and ZenML handles the connection to this server using the details you passed in when registering the component.)
Visit the SDK docs to learn more about the methods that ZenML exposes for the Argilla annotator. To access the SDK through Python, you would first get the client object and then call the methods you need. For example:
For more detailed information on how to use the Argilla annotator and the functionality it provides, visit the Argilla documentation.