Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# GSK Copay Card Fraud Detection System — v4 Group-Aware
|
| 2 |
|
| 3 |
**Product Focus:** Trelegy Ellipta (configurable for Nucala / any GSK product)
|
|
@@ -411,3 +415,23 @@ PRODUCT_CONFIG = {
|
|
| 411 |
## License
|
| 412 |
|
| 413 |
Proprietary — GSK internal use.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# GSK Copay Card Fraud Detection System — v4 Group-Aware
|
| 6 |
|
| 7 |
**Product Focus:** Trelegy Ellipta (configurable for Nucala / any GSK product)
|
|
|
|
| 415 |
## License
|
| 416 |
|
| 417 |
Proprietary — GSK internal use.
|
| 418 |
+
|
| 419 |
+
<!-- ml-intern-provenance -->
|
| 420 |
+
## Generated by ML Intern
|
| 421 |
+
|
| 422 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 423 |
+
|
| 424 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 425 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 426 |
+
|
| 427 |
+
## Usage
|
| 428 |
+
|
| 429 |
+
```python
|
| 430 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 431 |
+
|
| 432 |
+
model_id = 'Harsh2396/gsk-copay-fraud-detection'
|
| 433 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 434 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 435 |
+
```
|
| 436 |
+
|
| 437 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|