Edit model card

How to use

You can use this model directly with a pipeline for token classification:

>>>from transformers import pipeline
>>>pipe = pipeline(model="ChouBERT/ChouBERT-16-plant-health-ner", aggregation_strategy="simple")
>>>pipe("Soupe de poisson toute prête de carrefour avec fromage râpé, croûtons à l'ail et rouille #TeamFeignasse.")
[]
>>>pipe(" Attaque de rouille brune en Dordogne sur du blé tendre variété Oregrain !")
[{'entity_group': 'Maladie',
  'score': 0.80249035,
  'word': '',
  'start': 11,
  'end': 12},
 {'entity_group': 'Maladie',
  'score': 0.80133665,
  'word': 'rouille brune',
  'start': 12,
  'end': 25}]
Downloads last month
10
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.