scibert icon indicating copy to clipboard operation
scibert copied to clipboard

A BERT model for scientific text.

Results 62 scibert issues
Sort by recently updated
recently updated
newest added

I would like to use Scibert for iterated token generation. Here is my code: ``` import torch import torch.nn.functional as F from transformers import AutoTokenizer, AutoModelForCausalLM device = "cuda" tokenizer...