Instructions to use Canstralian/AI-DrivenExploitGeneration with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Canstralian/AI-DrivenExploitGeneration with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Canstralian/AI-DrivenExploitGeneration", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| from transformers import BertForSequenceClassification | |
| model = BertForSequenceClassification.from_pretrained('bert-base-uncased', num_labels=2) | |
| model.save_pretrained('./hf_model') | |