Instructions to use aehrc/cxrmate-rrg24 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aehrc/cxrmate-rrg24 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="aehrc/cxrmate-rrg24", trust_remote_code=True)# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("aehrc/cxrmate-rrg24", trust_remote_code=True) model = AutoModel.from_pretrained("aehrc/cxrmate-rrg24", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ EAST was applied to a multimodal language model with RadGraph as the reward. Oth
|
|
| 24 |
## How to use:
|
| 25 |
|
| 26 |
```python
|
| 27 |
-
import torch
|
| 28 |
from torchvision.transforms import v2
|
| 29 |
import transformers
|
| 30 |
|
|
|
|
| 24 |
## How to use:
|
| 25 |
|
| 26 |
```python
|
| 27 |
+
import torch
|
| 28 |
from torchvision.transforms import v2
|
| 29 |
import transformers
|
| 30 |
|