Instructions to use SAP/password-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SAP/password-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="SAP/password-model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("SAP/password-model") model = AutoModelForSequenceClassification.from_pretrained("SAP/password-model") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,6 +12,6 @@ The aim of this model is to classify whether a code snippet contains a password
|
|
| 12 |
|
| 13 |
The model is directly integrated into Credential Digger and can be used to filter the false positive discoveries of a scan.
|
| 14 |
|
| 15 |
-
Please refer to Credential Digger for its usage within the [
|
| 16 |
the [CLI](https://github.com/SAP/credential-digger/wiki/CLI:--Command-Line-Interface),
|
| 17 |
or the UI.
|
|
|
|
| 12 |
|
| 13 |
The model is directly integrated into Credential Digger and can be used to filter the false positive discoveries of a scan.
|
| 14 |
|
| 15 |
+
Please refer to Credential Digger for its usage within the [Python library](https://github.com/SAP/credential-digger#python-library-usage),
|
| 16 |
the [CLI](https://github.com/SAP/credential-digger/wiki/CLI:--Command-Line-Interface),
|
| 17 |
or the UI.
|