Ryuya Ikeda
Ryuya Ikeda
Hi @robinsongh381 . Thank you for your question. Could you tell me why you thought so ? If we can't compute the probability for the optimal sequence using this liblary,...
Hi @andreabac3 . I ran speed test using TorchCRF (this repo) and [pytorch-crf](https://github.com/kmkurn/pytorch-crf). Test code was shown in the following. ``` import torch import cProfile batch_size = 2 sequence_size =...
Hi @andreabac3 I fixed algorithms to improve performance in #10. If you'd like, you can try out the performance evaluation. Thank you.
Hi @mingkin I succeeded in executing your script in my machine. your script ```python import torch batch_size = 2 sequence_size = 3 num_labels = 5 labels = torch.LongTensor([[0, 2, 3],...