CoolFace
Modelpublic

StanfordSCALE/assertion_sentence_has_negation_or_denial

sourceHugging Faceupdated 5d agoView on Hugging Face
0likes25downloads
Model Card

Assertion: sentence has negation or denial

This classifier was trained for EduBehaviors: Assertion-based schemas for auditable dialogue coding and is usable through the Python package EduBehaviors-kit. This classifier was trained on an LLM-annotated subset of teacher utterances from the TalkMoves Dataset. See the Datasets section below for more information.


Training Details

Datasets

This model's columns are assertion_sentence_has_negation_or_denial and split_sentence_has_negation_or_denial.

Base rate (share of rows labeled as True): 7.2% overall — 7.6% train, 6.1% dev, 6.9% test.

Labels and annotation

Labels were generated with LLM annotators. Krippendorff's alpha for this assertion is 0.902.

Hyperparameters

ParameterValue
Base model (body)sentence-transformers/paraphrase-mpnet-base-v2
HeadLogisticRegression
Body learning rate2e-05
Head learning rate0.01
Batch size16 (contrastive phase) / 32 (head)
Epochs10
Max steps5000 (contrastive phase)
Eval max steps100
Seed20260904
Mixed precisionenabled on GPU

Evaluation

Results

SplitnBase ratePrecisionRecallF1 (positive class)ROC-AUCAverage precision
dev8586.1%0.9040.9040.9040.9970.937
test2,1466.9%0.9170.9660.9410.9870.956

Limitations

  • Labels come from LLM annotators, not human coders. Agreement between annotators with Krippendorff's Alpha is 0.902.
  • Trained on teacher utterances only. Behaviour on student speech is untested.

How to Use

Message Structure

The model was trained on text built as:

{utterance}

The utterance is passed through as-is.

Running instructions

bash
pip install setfit
python
from setfit import SetFitModel

model = SetFitModel.from_pretrained("StanfordSCALE/assertion_sentence_has_negation_or_denial")

text = 'Now were not talking about clothes but like model a problem'
model.predict([text])        # -> array([1]) when the assertion holds
model.predict_proba([text])  # -> [[P(no), P(yes)]]

Citation

bibtex
@misc{assertion_sentence_has_negation_or_denial,
  author = {Stanford SCALE Initiative},
  title  = {Assertion classifier: sentence has negation or denial},
  year   = {2026},
  url    = {https://huggingface.co/StanfordSCALE/assertion_sentence_has_negation_or_denial}
}