Summarization
Transformers
PyTorch
Safetensors
Enawené-Nawé
bart
text2text-generation
security
shorts
infosec
Instructions to use venkycs/securityShots with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use venkycs/securityShots with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="venkycs/securityShots")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("venkycs/securityShots") model = AutoModelForSeq2SeqLM.from_pretrained("venkycs/securityShots") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,6 +18,8 @@ co2_eq_emissions:
|
|
| 18 |
- Model ID: 85203142751
|
| 19 |
- CO2 Emissions (in grams): 38.5976
|
| 20 |
|
|
|
|
|
|
|
| 21 |
## Validation Metrics
|
| 22 |
|
| 23 |
- Loss: 1.693
|
|
|
|
| 18 |
- Model ID: 85203142751
|
| 19 |
- CO2 Emissions (in grams): 38.5976
|
| 20 |
|
| 21 |
+
Try model here - https://huggingface.co/spaces/venkycs/securityShots
|
| 22 |
+
|
| 23 |
## Validation Metrics
|
| 24 |
|
| 25 |
- Loss: 1.693
|