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
File size: 244 Bytes
633e696 | 1 2 3 4 5 6 7 8 9 10 11 12 | from setuptools import setup, find_packages
setup(
name="whiterabbitneo",
version="0.1",
packages=find_packages(),
install_requires=[
"transformers>=4.21.1",
"torch>=1.10.0",
"datasets>=1.18.3",
],
) |