seqeval icon indicating copy to clipboard operation
seqeval copied to clipboard

A Python framework for sequence labeling evaluation(named-entity recognition, pos tagging, etc...)

Results 33 seqeval issues
Sort by recently updated
recently updated
newest added

How to reproduce the problem --------- --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in ----> 1 from seqeval.metrics import f1_score, accuracy_score ModuleNotFoundError: No module named 'seqeval' ```bash ``` Your Environment...

# Description Functions used inside f1_score function use `beta` as a parameter. However, f1_score function itself doesn't give the opportunity to change the balance between precision and recall. It could...

Bumps [numpy](https://github.com/numpy/numpy) from 1.19.2 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Hi, You do a great job here!. is seqeval.metrics.f1_score compatible with aspect extraction tasks?

I'm using the [Huggingface implementation of seqeval](https://huggingface.co/metrics/seqeval), example codes as follows: ``` from datasets import load_metric predictions = [['B-E', 'I-E', 'O', 'O', 'O', 'O', 'O', 'O']] references = [['B-E', 'I-E',...

I am trying to print a Classification report and I get the below error: I did check if any int values are passed in the list and there were none,...

How to reproduce the behaviour --------- Your Environment --------- * Operating System: * Python Version: * Package Version: seq = ['O', 'B-PER', 'I-LOC', 'O', 'B-LOC', 'I-PER'] print(get_entities(seq)) [('PER', 1, 1),...

How to reproduce the behaviour Install the package offline. If i try to install the package i always get: ERROR: Could not find a version that satisfies the requirement setuptools_scm...

How to reproduce the behaviour --------- When set `output_dict=True` in `classification_report`, the arg `digits` doesn't work Your Environment --------- * Operating System: Linux * Python Version: 3.8.10 * Package Version:...

Hey, I want to print the FP and FN for my system. I checked the code and it seems you don't use them in the calculation and just use `pred_sum`...