Instructions to use JayNightmare/PrERT-CNM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JayNightmare/PrERT-CNM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="JayNightmare/PrERT-CNM")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("JayNightmare/PrERT-CNM") model = AutoModelForSequenceClassification.from_pretrained("JayNightmare/PrERT-CNM", device_map="auto") - Notebooks
- Google Colab
- Kaggle
JayNightmare/PrERT-CNM-v4-privacybert
PrERT-CNM v4 PrivacyBERT is a Transformers sequence-classification model prepared from the local checkpoint at artifacts\phase-3-privacybert\classifier_checkpoint\privacybert.
Intended Use
Use this model for text classification in the privacy/CNM workflow it was trained for. It is intended for research and application prototyping unless your own validation shows it is suitable for production use.
Labels
usersystemorganization
Usage
from transformers import pipeline
classifier = pipeline("text-classification", model="JayNightmare/PrERT-CNM-v4-privacybert", top_k=None)
scores = classifier("Paste text to classify.")
print(scores)
Training Details
- Base architecture: BERT-compatible sequence classifier
- Source checkpoint:
artifacts\phase-3-privacybert\classifier_checkpoint\privacybert - Training metadata: included when available in the checkpoint folder
Evaluation
Add the final held-out metrics before publishing if they are available. Include dataset split details, label distribution, and any thresholding used by downstream consumers.
Limitations
The model can be sensitive to domain shift, ambiguous language, long inputs, and label definitions that differ from the training data. Review outputs before using them in automated decisions.
Gradio Demo
The companion Space can be prepared from huggingface/space and pointed at this model with the MODEL_ID environment variable.
- Downloads last month
- 46