tdc
/

scBERT / README.md
avelezarce's picture
Update README.md
f654e74 verified
|
raw
history blame
660 Bytes
---
license: mpl-2.0
---
The TDC Model Hub Transformers API is under development. In the meantime, we highly recommend using the native HF Transformers library and original Geneformer repo to run inference.
```python
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="havens2/scBERT_SER")
```
```python
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("havens2/scBERT_SER")
model = AutoModelForTokenClassification.from_pretrained("havens2/scBERT_SER")
```
https://huggingface.co/havens2/scBERT_SER