mirror of
https://github.com/qurator-spk/neat.git
synced 2025-06-09 11:49:54 +02:00
add type 'other'
This commit is contained in:
parent
fbc7ea6a88
commit
d739c1d6c2
2 changed files with 11 additions and 6 deletions
|
@ -14,6 +14,7 @@
|
|||
.ner_per{background-color:skyblue}
|
||||
.ner_loc{background-color:goldenrod}
|
||||
.ner_org{background-color:plum}
|
||||
.ner_oth{background-color:lightgreen}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -60,6 +61,8 @@
|
|||
$("#table tr:contains('I-LOC')").addClass('ner_loc');
|
||||
$("#table tr:contains('B-ORG')").addClass('ner_org');
|
||||
$("#table tr:contains('I-ORG')").addClass('ner_org');
|
||||
$("#table tr:contains('B-OTH')").addClass('ner_oth');
|
||||
$("#table tr:contains('I-OTH')").addClass('ner_oth');
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue