Transformers How to use AnonymousSub/Sci_HTM_2_FPDM_bert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="AnonymousSub/Sci_HTM_2_FPDM_bert") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("AnonymousSub/Sci_HTM_2_FPDM_bert")
model = AutoModel.from_pretrained("AnonymousSub/Sci_HTM_2_FPDM_bert")