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", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 143 Bytes
611e778 | 1 2 3 4 5 | from transformers import BertTokenizer
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
tokenizer.save_pretrained('./hf_model')
|