Argilla

Latest version: v2.8.0

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 12 of 22

0.16.1

[0.16.1](https://github.com/recognai/rubrix/compare/v0.16.0...v0.16.1) (2022-07-22)


Bug Fixes

* 'WeakMultiLabels.summary' and 'show_records' after extending the weak label matrix ([1633](https://github.com/recognai/rubrix/issues/1633)) ([3cb4c07](https://github.com/recognai/rubrix/commit/3cb4c073456ab71b495459ec4a0d64875c0cd134)), closes [#1631](https://github.com/recognai/rubrix/issues/1631)
* Display metadata in Text2Text dataset ([1626](https://github.com/recognai/rubrix/issues/1626)) ([0089e0a](https://github.com/recognai/rubrix/commit/0089e0a674d05813cc7889b0530ffedae75a1ad5)), closes [#1623](https://github.com/recognai/rubrix/issues/1623)
* Show predicted OK/KO when predictions exist ([1620](https://github.com/recognai/rubrix/issues/1620)) ([ef66e9c](https://github.com/recognai/rubrix/commit/ef66e9ca78416ee3a33deda05234b9392302f635)), closes [#1619](https://github.com/recognai/rubrix/issues/1619)


Documentation

* Fix typo in Getting Started -> Concepts ([1618](https://github.com/recognai/rubrix/issues/1618)) ([b236cb8](https://github.com/recognai/rubrix/commit/b236cb887c7c3d99fbbc24a2495b96f66747816e)), closes [#1617](https://github.com/recognai/rubrix/issues/1617)

You can see all work included in the release here
- fix: 'WeakMultiLabels.summary' and 'show_records' after extending the weak label matrix (1633) by dcfidalgo
- fix: Display metadata in Text2Text dataset (1626) by leiyre
- chore: set version by dcfidalgo
- docs: Fix typo in Getting Started -> Concepts (1618) by dcfidalgo
- fix: Show predicted OK/KO when predictions exist (1620) by leiyre

0.16.0

[0.16.0](https://github.com/recognai/rubrix/compare/v0.15.0...v0.16.0) (2022-07-08)

Highlights

👂 Listeners: enable more interactive workflows between client and server

Listeners enable you to define functions that get executed under certain conditions when something changes in a dataset. There are many use cases for this: monitoring annotation jobs, monitoring model predictions, enabling active learning workflows, and many more.

You can find the Python API reference docs here: https://rubrix.readthedocs.io/en/stable/reference/python/python_listeners.html#python-listeners

We will be documenting these use cases with practical examples, but for this release, we've included a new tutorial for using this with active learning: https://rubrix.readthedocs.io/en/stable/tutorials/active_learning_with_small_text.html. This tutorial includes the following listener function, which implements the active learning loop:

python
from rubrix.listeners import listener
from sklearn.metrics import accuracy_score

Define some helper variables
LABEL2INT = trec["train"].features["label-coarse"].str2int
ACCURACIES = []

Set up the active learning loop with the listener decorator
listener(
dataset=DATASET_NAME,
query="status:Validated AND metadata.batch_id:{batch_id}",
condition=lambda search: search.total==NUM_SAMPLES,
execution_interval_in_seconds=3,
batch_id=0
)
def active_learning_loop(records, ctx):

1. Update active learner
print(f"Updating with batch_id {ctx.query_params['batch_id']} ...")
y = np.array([LABEL2INT(rec.annotation) for rec in records])

initial update
if ctx.query_params["batch_id"] == 0:
indices = np.array([rec.id for rec in records])
active_learner.initialize_data(indices, y)
update with the prior queried indices
else:
active_learner.update(y)
print("Done!")

2. Query active learner
print("Querying new data points ...")
queried_indices = active_learner.query(num_samples=NUM_SAMPLES)
ctx.query_params["batch_id"] += 1
new_records = [
rb.TextClassificationRecord(
text=trec["train"]["text"][idx],
metadata={"batch_id": ctx.query_params["batch_id"]},
id=idx,
)
for idx in queried_indices
]

3. Log the batch to Rubrix
rb.log(new_records, DATASET_NAME)

4. Evaluate current classifier on the test set
print("Evaluating current classifier ...")
accuracy = accuracy_score(
dataset_test.y,
active_learner.classifier.predict(dataset_test),
)
ACCURACIES.append(accuracy)
print("Done!")

print("Waiting for annotations ...")



📖 New docs!

https://rubrix.readthedocs.io/

<img width="1643" alt="Screenshot 2022-07-13 at 12 49 42" src="https://user-images.githubusercontent.com/1107111/178716820-f675ec48-486f-4763-bd48-60e5e7d773da.png">

🧱 `extend_matrix`: Weak label augmentation using embeddings

This release includes an exciting feature to augment the coverage of your weak labels using embeddings. You can find a practical tutorial here: https://rubrix.readthedocs.io/en/stable/tutorials/extend_weak_labels_with_embeddings.html

Features

* **1561:** standardize icons ([1565](https://github.com/recognai/rubrix/issues/1565)) ([15254e7](https://github.com/recognai/rubrix/commit/15254e73c1cec4b9f3f2bb940a89e72d66da78e5)), closes [#1561](https://github.com/recognai/rubrix/issues/1561)
* **1602:** new rubrix dataset listeners ([1507](https://github.com/recognai/rubrix/issues/1507), [#1586](https://github.com/recognai/rubrix/issues/1586), [#1583](https://github.com/recognai/rubrix/issues/1583), [#1596](https://github.com/recognai/rubrix/issues/1596)) ([65747ab](https://github.com/recognai/rubrix/commit/65747abcde1283356465cfc9836bd600ff354535)), closes [#1602](https://github.com/recognai/rubrix/issues/1602)
* Add 'extend_matrix' to the WeakMultiLabel class ([1577](https://github.com/recognai/rubrix/issues/1577)) ([cf89311](https://github.com/recognai/rubrix/commit/cf89311473c5446b7e01baf9429e0b673e3cf5a1))
* Improve from datasets ([1567](https://github.com/recognai/rubrix/issues/1567)) ([2b0d607](https://github.com/recognai/rubrix/commit/2b0d6075ec3f4eb2cf2783583dd21d4f4a0d5c4f))
* **token-class:** adjust token spans spaces ([1599](https://github.com/recognai/rubrix/issues/1599)) ([0fb3576](https://github.com/recognai/rubrix/commit/0fb3576e6ade30cc7dbbb9d6af947fa3f85ea4c0))


Bug Fixes

* **1264:** discard first space after a token ([1591](https://github.com/recognai/rubrix/issues/1591)) ([eff0ac5](https://github.com/recognai/rubrix/commit/eff0ac5b0e2f7198e695ede905737497bba451cf)), closes [#1264](https://github.com/recognai/rubrix/issues/1264)
* **1545:** highlight words with accents ([1550](https://github.com/recognai/rubrix/issues/1550)) ([c42e77b](https://github.com/recognai/rubrix/commit/c42e77be021e57ba6b15074f457e99d4d06f0a33)), closes [#1545](https://github.com/recognai/rubrix/issues/1545)
* **1548:** access datasets for superusers when workspace is not provided ([1572](https://github.com/recognai/rubrix/issues/1572), [#1608](https://github.com/recognai/rubrix/issues/1608)) ([0b04bc8](https://github.com/recognai/rubrix/commit/0b04bc8920b78e346cb6fef8fa650fc485e54819)), closes [#1548](https://github.com/recognai/rubrix/issues/1548)
* **1551:** don't show error traces for EntityNotFoundError's ([1569](https://github.com/recognai/rubrix/issues/1569)) ([04e101c](https://github.com/recognai/rubrix/commit/04e101c36e00c87d32359ca0df7c92b2cf9ed55c)), closes [#1551](https://github.com/recognai/rubrix/issues/1551)
* **1557:** allow text editing when clicking the "edit" button ([1558](https://github.com/recognai/rubrix/issues/1558)) ([e751414](https://github.com/recognai/rubrix/commit/e7514149be3632062dd755e79c099a0f091d70df)), closes [#1557](https://github.com/recognai/rubrix/issues/1557)
* **1574:** search highlighting for a single dot ([1592](https://github.com/recognai/rubrix/issues/1592)) ([53474a1](https://github.com/recognai/rubrix/commit/53474a1db9fd9a92d263988169833af0507f6ffe)), closes [#1574](https://github.com/recognai/rubrix/issues/1574)
* **1575:** show predicted ok/ko in Text Classifier explore mode ([1576](https://github.com/recognai/rubrix/issues/1576)) ([ada87c0](https://github.com/recognai/rubrix/commit/ada87c07d0a603fff56f61ff1c321434ce028791)), closes [#1575](https://github.com/recognai/rubrix/issues/1575)
* compatibility with new dataset version ([1566](https://github.com/recognai/rubrix/issues/1566)) ([ac26e30](https://github.com/recognai/rubrix/commit/ac26e301a636d193ed5036dfa31370c29e2f1462))


Documentation

* **1512:** change theme to furo ([1564](https://github.com/recognai/rubrix/issues/1564), [#1604](https://github.com/recognai/rubrix/issues/1604)) ([98869d2](https://github.com/recognai/rubrix/commit/98869d20efcff27c0c884fe76f5f32cc2a1bfe35)), closes [#1512](https://github.com/recognai/rubrix/issues/1512)
* add 'how to prepare your data for training' to basics ([1589](https://github.com/recognai/rubrix/issues/1589)) ([a21bcf3](https://github.com/recognai/rubrix/commit/a21bcf3e1a89e74e3ce4db0f66a7854aa4a41e7c))
* add active learning with small text and listener tutorial ([1585](https://github.com/recognai/rubrix/issues/1585), [#1609](https://github.com/recognai/rubrix/issues/1609)) ([d59573f](https://github.com/recognai/rubrix/commit/d59573fefa46be55159b4f08fdfa92ee75b76973)), closes [#1601](https://github.com/recognai/rubrix/issues/1601) [#421](https://github.com/recognai/rubrix/issues/421)
* Add MajorityVoter to references + Add comments about multi-label support of the label models ([1582](https://github.com/recognai/rubrix/issues/1582)) ([ab481c7](https://github.com/recognai/rubrix/commit/ab481c77551e00d5f11bec51f48f1d1d1adda6a0))
* add pip version and dockertag as parameter in the build process ([1560](https://github.com/recognai/rubrix/issues/1560)) ([73a31e2](https://github.com/recognai/rubrix/commit/73a31e26d50883bc7ece90f287e64295ba0c17ee))

You can see all work included in the release here
- chore(docs): remove by frascuchon
- docs: add active learning with small text and listener tutorial (1585, 1609) by dcfidalgo
- docs(1512): change theme to furo (1564, 1604) by frascuchon
- chore: set version by frascuchon
- feat(token-class): adjust token spans spaces (1599) by frascuchon
- feat(1602): new rubrix dataset listeners (1507, 1586, 1583, 1596) by frascuchon
- docs: add 'how to prepare your data for training' to basics (1589) by dcfidalgo
- test: configure numpy to disable multi threading (1593) by frascuchon
- docs: Add MajorityVoter to references + Add comments about multi-label support of the label models (1582) by dcfidalgo
- feat(1561): standardize icons (1565) by leiyre
- Feat: Improve from datasets (1567) by dcfidalgo
- feat: Add 'extend_matrix' to the WeakMultiLabel class (1577) by dcfidalgo
- docs: add pip version and dockertag as parameter in the build process (1560) by frascuchon
- refactor: remove `words` references in searches (1571) by frascuchon
- ci: check conda env cache (1570) by frascuchon
- fix(1264): discard first space after a token (1591) by frascuchon
- ci(package): regenerate view snapshot (1600) by frascuchon
- fix(1574): search highlighting for a single dot (1592) by leiyre
- fix(1575): show predicted ok/ko in Text Classifier explore mode (1576) by leiyre
- fix(1548): access datasets for superusers when workspace is not provided (1572, 1608) by frascuchon
- fix(1551): don't show error traces for EntityNotFoundError's (1569) by frascuchon
- fix: compatibility with new dataset version (1566) by dcfidalgo
- fix(1557): allow text editing when clicking the "edit" button (1558) by leiyre
- fix(1545): highlight words with accents (1550) by leiyre

0.15.0

[0.15.0](https://github.com/recognai/rubrix/compare/v0.14.2...v0.15.0) (2022-06-08)

🔆 Highlights

🏷️ Configure datasets with a labeling scheme

You can now predefine and change the label schema of your datasets. This is useful for fixing a set of labels for you and your annotation teams.

python
import rubrix as rb

Define labeling schema
settings = rb.TextClassificationSettings(label_schema=["A", "B", "C"])

Apply seetings to a new or already existing dataset
rb.configure_dataset(name="my_dataset", settings=settings)

Logging to the newly created dataset triggers the validation checks
rb.log(rb.TextClassificationRecord(text="text", annotation="D"), "my_dataset")
BadRequestApiError: Rubrix server returned an error with http status: 400


Read the docs: https://rubrix.readthedocs.io/en/stable/guides/dataset_settings.html

🧱 Weak label matrix augmentation using embeddings
You can now use an augmentation technique inspired by https://github.com/HazyResearch/epoxy to augment the coverage of your rules using embeddings (e.g., sentence transformers). This is useful for improving the recall of your labeling rules.

Read the tutorial: https://rubrix.readthedocs.io/en/stable/tutorials/extend_weak_labels_with_embeddings.html

🏛️ Tutorial Gallery
Tutorials are now organized into different categories and with a new gallery design!

Read the docs: https://rubrix.readthedocs.io/en/stable/tutorials/introductory.html

🏁 Basics guide
This is the first version of the basics guide. This guide will show you how to perform the most basic actions with Rubrix, such as uploading data or data annotation.

Read the docs: https://rubrix.readthedocs.io/en/stable/getting_started/basics.html

Features

* **1134:** Allow extending the weak label matrix with embeddings ([1487](https://github.com/recognai/rubrix/issues/1487)) ([4d54994](https://github.com/recognai/rubrix/commit/4d54994d45bc5487ee70ef77967f064c5ee65212)), closes [#1134](https://github.com/recognai/rubrix/issues/1134)
* **1432:** configure datasets with a label schema ([21e48c0](https://github.com/recognai/rubrix/commit/21e48c007e4e71b02c2d4fe205b5a1587e0f8829)), closes [#1432](https://github.com/recognai/rubrix/issues/1432)
* **1446:** copy icon position in datasets list ([1448](https://github.com/recognai/rubrix/issues/1448)) ([7c9fa52](https://github.com/recognai/rubrix/commit/7c9fa5282c18599a492c567631e53b6fa8a8f55d)), closes [#1446](https://github.com/recognai/rubrix/issues/1446)
* **1460:** include text hyphenation ([1469](https://github.com/recognai/rubrix/issues/1469)) ([ec23b2d](https://github.com/recognai/rubrix/commit/ec23b2d7fd7d28ee9ad81adc7ab775d7414edb4b)), closes [#1460](https://github.com/recognai/rubrix/issues/1460)
* **1463:** change icon position in table header ([1473](https://github.com/recognai/rubrix/issues/1473)) ([5172324](https://github.com/recognai/rubrix/commit/5172324613b50b340184e758587f76c4bd6b71e8)), closes [#1463](https://github.com/recognai/rubrix/issues/1463)
* **1467:** include animation delay for last progress bar track ([1462](https://github.com/recognai/rubrix/issues/1462)) ([c772b74](https://github.com/recognai/rubrix/commit/c772b7409f902a78c614b3a8cb7bae16994b9410)), closes [#1467](https://github.com/recognai/rubrix/issues/1467)
* **configuraton:** add elasticsearch ca_cert path variable ([1502](https://github.com/recognai/rubrix/issues/1502)) ([f0eda12](https://github.com/recognai/rubrix/commit/f0eda124777ea6ac98c9c37d5727dd814f0d981b))
* **UI:** improve access to actions in metadata and sort dropdowns ([1510](https://github.com/recognai/rubrix/issues/1510)) ([8d33090](https://github.com/recognai/rubrix/commit/8d33090c043f22035cd00c80b97f9d618741181c)), closes [#1435](https://github.com/recognai/rubrix/issues/1435)


Bug Fixes

* **1522:** dates metadata fields accessible for sorting ([1529](https://github.com/recognai/rubrix/issues/1529)) ([a576ceb](https://github.com/recognai/rubrix/commit/a576ceb9dab1475bee97c45ea2d3f0b7c8883849)), closes [#1522](https://github.com/recognai/rubrix/issues/1522)
* **1527:** check agents instead labels for `predicted` computation ([1528](https://github.com/recognai/rubrix/issues/1528)) ([2f2ee2e](https://github.com/recognai/rubrix/commit/2f2ee2edfca6988c7ec9c48aa1a1a15b0793c39d)), closes [#1527](https://github.com/recognai/rubrix/issues/1527)
* **1532:** correct domain for filter score histogram ([1540](https://github.com/recognai/rubrix/issues/1540)) ([7478d6c](https://github.com/recognai/rubrix/commit/7478d6c09ac35cb911b443df2866615182e594a9)), closes [#1532](https://github.com/recognai/rubrix/issues/1532)
* **1533:** restrict highlighted fields ([3a8b8a9](https://github.com/recognai/rubrix/commit/3a8b8a9c743ee336bcc7b0e80ee66394958c70bd)), closes [#1533](https://github.com/recognai/rubrix/issues/1533)
* **1534:** fix progress in the metrics sidebar when page is refreshed ([1536](https://github.com/recognai/rubrix/issues/1536)) ([1b572c4](https://github.com/recognai/rubrix/commit/1b572c44f8bbe577f7b3b56d4176a20595a67158))
* **1539:** checkbox behavior with value 0 ([1541](https://github.com/recognai/rubrix/issues/1541)) ([7a0ab63](https://github.com/recognai/rubrix/commit/7a0ab639a90d5da32a026284ad461de808ccd00c)), closes [#1539](https://github.com/recognai/rubrix/issues/1539)
* **metrics:** compute f1 for text classification ([1530](https://github.com/recognai/rubrix/issues/1530)) ([147d38a](https://github.com/recognai/rubrix/commit/147d38a983784b2501786696e31b45130e41fe9b))
* **search:** highlight only textual input fields ([8b83a82](https://github.com/recognai/rubrix/commit/8b83a82b5e8906fff598b4cfe740179ffe2ef680)), closes [#1538](https://github.com/recognai/rubrix/issues/1538) [#1544](https://github.com/recognai/rubrix/issues/1544)

New contributors

RafaelBod made his first contribution in https://github.com/recognai/rubrix/pull/1413

0.14.2

[0.14.2](https://github.com/recognai/rubrix/compare/v0.14.1...v0.14.2) (2022-05-31)


Bug Fixes

* **1514:** allow ent score `None` and change default value to 0.0 ([1521](https://github.com/recognai/rubrix/issues/1521)) ([0a02c70](https://github.com/recognai/rubrix/commit/0a02c70e0a51e543e0c7d317ae2e397b084f44af)), closes [#1514](https://github.com/recognai/rubrix/issues/1514)
* **1516:** restore read-only to copied dataset ([1520](https://github.com/recognai/rubrix/issues/1520)) ([5b9cf0e](https://github.com/recognai/rubrix/commit/5b9cf0ef5198f7b7dc6a8525bafc09716c08d5b0)), closes [#1516](https://github.com/recognai/rubrix/issues/1516)
* **1517:** stop background task when something happens to main thread ([1519](https://github.com/recognai/rubrix/issues/1519)) ([0304f40](https://github.com/recognai/rubrix/commit/0304f4087ff703f4655f3351f0640a61cfde0f5e)), closes [#1517](https://github.com/recognai/rubrix/issues/1517)
* **1518:** disable global actions checkbox when no data was found ([1525](https://github.com/recognai/rubrix/issues/1525)) ([bf35e72](https://github.com/recognai/rubrix/commit/bf35e725f61371a60f234d2e836cdd169023ed7e)), closes [#1518](https://github.com/recognai/rubrix/issues/1518)
* **UI:** remove selected metadata fields for sortable fields dropdown ([1513](https://github.com/recognai/rubrix/issues/1513)) ([bb9482b](https://github.com/recognai/rubrix/commit/bb9482b240b4eb02f1cd66bf19c8f4025dc45eb2))

0.14.1

[0.14.1](https://github.com/recognai/rubrix/compare/v0.14.0...v0.14.1) (2022-05-20)


Bug Fixes

* **1447:** change agent when validating records with annotation but default status ([1480](https://github.com/recognai/rubrix/issues/1480)) ([126e6f4](https://github.com/recognai/rubrix/commit/126e6f4d3ba53ce2bef5908c82174fa20b20551e)), closes [#1447](https://github.com/recognai/rubrix/issues/1447)
* **1472:** hide scrollbar in scrollable components ([1490](https://github.com/recognai/rubrix/issues/1490)) ([b056e4e](https://github.com/recognai/rubrix/commit/b056e4e595a2d4585f67c19049c2250a432b8b36)), closes [#1472](https://github.com/recognai/rubrix/issues/1472)
* **1483:** close global actions "Annotate as" selector after deselect records checkbox ([1485](https://github.com/recognai/rubrix/issues/1485)) ([a88f8cb](https://github.com/recognai/rubrix/commit/a88f8cb4942d4ddcd316f5fd59afa18b65498e24))
* **1503:** Count filter values when loading a dataset with a route query ([1506](https://github.com/recognai/rubrix/issues/1506)) ([43be9b8](https://github.com/recognai/rubrix/commit/43be9b87f99ead9e298448d3cf1a791cce9d0fc7)), closes [#1503](https://github.com/recognai/rubrix/issues/1503)
* **documentation:** fix user management guide ([1511](https://github.com/recognai/rubrix/issues/1511)) ([63f7bee](https://github.com/recognai/rubrix/commit/63f7bee24272bfd784985fac5b5b2e83588bd414)), closes [#1501](https://github.com/recognai/rubrix/issues/1501)
* **filters:** sort filter values by count ([1488](https://github.com/recognai/rubrix/issues/1488)) ([0987167](https://github.com/recognai/rubrix/commit/09871673e0196cdc992f6e1691e4a03bb75e3125)), closes [#1484](https://github.com/recognai/rubrix/issues/1484)

0.14.0

[0.14.0](https://github.com/recognai/rubrix/compare/v0.13.3...v0.14.0) (2022-05-10)

Async version of `rb.log`

You can now use the parameter `background` in the `rb.log` method to log records without blocking the main process. The main use case is monitoring production pipelines to do prediction monitoring. Here's an example with BentoML (you can find the full example in the updated [Monitoring guide](https://rubrix.readthedocs.io/en/v0.14.0/guides/monitoring.html#Using-rb.log-in-background-mode)):

python
from bentoml import BentoService, api, artifacts, env
from bentoml.adapters import JsonInput
from bentoml.frameworks.spacy import SpacyModelArtifact

import rubrix as rb

import spacy

nlp = spacy.load("en_core_web_sm")


env(infer_pip_packages=True)
artifacts([SpacyModelArtifact("nlp")])
class SpacyNERService(BentoService):

api(input=JsonInput(), batch=True)
def predict(self, parsed_json_list):
result, rb_records = ([], [])
for index, parsed_json in enumerate(parsed_json_list):
doc = self.artifacts.nlp(parsed_json["text"])
prediction = [{"entity": ent.text, "label": ent.label_} for ent in doc.ents]
rb_records.append(
rb.TokenClassificationRecord(
text=doc.text,
tokens=[t.text for t in doc],
prediction=[
(ent.label_, ent.start_char, ent.end_char) for ent in doc.ents
],
)
)
result.append(prediction)

rb.log(
name="monitor-for-spacy-ner",
records=rb_records,
tags={"framework": "bentoml"},
background=True,
verbose=False
) By using the background=True, the model latency won't be affected

return result


Confidence scores in Token Classification (NER)
To store entity predictions you can attach a score using the last position of the entity tuple `(label, char_start, char_end, score)`. Let's see an example:

python
import rubrix as rb

text = "Rubrix is a data science tool"

record = rb.TokenClassificationRecord(
text=text,
tokens=text.split(" "),
prediction=[("PRODUCT", 0, 6, 0.99)]
)

rb.log(record, "ner_with_scores")

Then, in the web application, you and your team can use the score filter to find potentially problematic entities, like in the screenshot below:

<img width="1587" alt="Screenshot 2022-05-12 at 11 49 43" src="https://user-images.githubusercontent.com/1107111/168043415-ea52354d-24aa-407f-a34e-474f30b55883.png">

If you want to see this in action, check this blog post by David Berenstein:

https://www.rubrix.ml/blog/concise-concepts-rubrix/

Rule metrics sidebar
We have a fresh new sidebar for the weak labeling mode, where you can see your overall rule metrics as you define new rules.

This sidebar should help you quickly understand your progress:

<img width="1572" alt="Screenshot 2022-05-12 at 11 52 10" src="https://user-images.githubusercontent.com/1107111/168043851-abcfa5d4-44c0-4c1b-b2e0-ac2146a76875.png">

See the updated user guide here: https://rubrix.readthedocs.io/en/v0.14.0/reference/webapp/define_rules.html

Features

* **1132:** introduce async/background version of rb.log ([1391](https://github.com/recognai/rubrix/issues/1391)) ([900307e](https://github.com/recognai/rubrix/commit/900307e8fd73427753676499ba8821643bcec252)), closes [#1132](https://github.com/recognai/rubrix/issues/1132)
* **1247:** label models predict method returns DatasetForTextClassification ([1442](https://github.com/recognai/rubrix/issues/1442)) ([42ca1be](https://github.com/recognai/rubrix/commit/42ca1be3b109ba248fe85a761170075e4622dad2)), closes [#1247](https://github.com/recognai/rubrix/issues/1247)
* **1379:** show prediction score in NER ([1389](https://github.com/recognai/rubrix/issues/1389)) ([0bdccd2](https://github.com/recognai/rubrix/commit/0bdccd2c07e354b33f693453db3e767ec2978a53)), closes [#1379](https://github.com/recognai/rubrix/issues/1379) [#1451](https://github.com/recognai/rubrix/issues/1451)
* **961:** rules metrics in sidebar ([1377](https://github.com/recognai/rubrix/issues/1377)) ([261f53a](https://github.com/recognai/rubrix/commit/261f53adb35a95666a8a3978f881b9045ff77e09)), closes [#961](https://github.com/recognai/rubrix/issues/961) [#1408](https://github.com/recognai/rubrix/issues/1408)
* **home:** improve table actions and styles ([1384](https://github.com/recognai/rubrix/issues/1384)) ([f09746e](https://github.com/recognai/rubrix/commit/f09746e7cb30ef7250575589dcf316fe6b01efb1)), closes [#1355](https://github.com/recognai/rubrix/issues/1355) [#1333](https://github.com/recognai/rubrix/issues/1333)


Bug Fixes

* **1407:** fix visualization in 1024px viewport ([1420](https://github.com/recognai/rubrix/issues/1420)) ([46f8d4d](https://github.com/recognai/rubrix/commit/46f8d4d33149dcfefeb175e7e798ec2acca47dd6)), closes [#1441](https://github.com/recognai/rubrix/issues/1441)
* **1458:** token classifier visualization in Safari ([1459](https://github.com/recognai/rubrix/issues/1459)) ([01cc492](https://github.com/recognai/rubrix/commit/01cc49236d3a517f1743b1654824940617810518)), closes [#1458](https://github.com/recognai/rubrix/issues/1458)

Page 12 of 22

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.