boltuix commited on
Commit
35a5bdd
Β·
verified Β·
1 Parent(s): 1802faa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -35
README.md CHANGED
@@ -350,41 +350,6 @@ Tokenize further with `transformers` πŸ€— or `NeuroNER` for model training.
350
 
351
  Visualize the NER tag distribution to understand entity prevalence. Since exact counts are unavailable, the chart below uses estimated data for demonstration. Replace with actual counts after analysis.
352
 
353
- <chartjs>
354
- {
355
- "type": "bar",
356
- "data": {
357
- "labels": ["O", "B-DATE", "I-DATE", "B-CARDINAL", "B-GPE", "B-ORG", "B-MONEY", "B-PERSON"],
358
- "datasets": [{
359
- "label": "NER Tag Counts (Estimated)",
360
- "data": [100000, 15000, 12000, 10000, 8000, 7000, 5000, 4000],
361
- "backgroundColor": ["#36A2EB", "#FF6384", "#FFCE56", "#4BC0C0", "#9966FF", "#FF9F40", "#66BB6A", "#EF5350"],
362
- "borderColor": ["#2A8BBF", "#D9546E", "#D9A83E", "#3A9A9A", "#7A52CC", "#D97F30", "#4CAF50", "#C62828"],
363
- "borderWidth": 1
364
- }]
365
- },
366
- "options": {
367
- "plugins": {
368
- "title": {
369
- "display": true,
370
- "text": "CoNLL 2025 NER: Tag Distribution (Estimated)",
371
- "font": { "size": 16 }
372
- }
373
- },
374
- "scales": {
375
- "y": {
376
- "beginAtZero": true,
377
- "title": { "display": true, "text": "Count" }
378
- },
379
- "x": {
380
- "title": { "display": true, "text": "NER Tag" },
381
- "ticks": { "autoSkip": false, "maxRotation": 45, "minRotation": 45 }
382
- }
383
- }
384
- }
385
- }
386
- </chartjs>
387
-
388
  To compute actual counts:
389
 
390
  ```python
 
350
 
351
  Visualize the NER tag distribution to understand entity prevalence. Since exact counts are unavailable, the chart below uses estimated data for demonstration. Replace with actual counts after analysis.
352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
  To compute actual counts:
354
 
355
  ```python