This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import click | |
import numpy as np | |
import torch | |
from collections import namedtuple | |
from pytorch_transformers import BertForTokenClassification, BertTokenizer | |
from torch.nn import CrossEntropyLoss | |
from torch.utils.data import DataLoader, SequentialSampler, TensorDataset |