Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BERT/Custom_Named_Entity_Recognition_with_BERT.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4131,7 +4131,7 @@
" # step 2: add special tokens (and corresponding labels)\n",
" tokenized_sentence = [\"[CLS]\"] + tokenized_sentence + [\"[SEP]\"] # add special tokens\n",
" labels.insert(0, \"O\") # add outside label for [CLS] token\n",
" labels.insert(-1, \"O\") # add outside label for [SEP] token\n",
" labels.append(\"O\") # add outside label for [SEP] token\n",
"\n",
" # step 3: truncating/padding\n",
" maxlen = self.max_len\n",
Expand Down Expand Up @@ -5710,4 +5710,4 @@
]
}
]
}
}