Instructions to use Canstralian/CySec_Known_Exploit_Analyzer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Canstralian/CySec_Known_Exploit_Analyzer with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Canstralian/CySec_Known_Exploit_Analyzer", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Create tokenizer_config.json
Browse files- tokenizer_config.json +8 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": true,
|
| 3 |
+
"vocab_size": 30522,
|
| 4 |
+
"special_tokens": {
|
| 5 |
+
"pad_token": "[PAD]",
|
| 6 |
+
"eos_token": "[EOS]"
|
| 7 |
+
}
|
| 8 |
+
}
|