Views
No views yet
pay-freq-v2 is a fine-tuned multi-class sequence classification model designed to determine the frequency at which a wage is reportedly paid (i.e., hourly, weekly, monthly, or annually). It is built on top of a deberta-v3-base model.text-classification pipeline.1from transformers import pipeline, AutoModelForSequenceClassification, AutoTokenizer
2
3model_name = "loyoladatamining/pay-freq-v2"
4model = AutoModelForSequenceClassification.from_pretrained(model_name)
5tokenizer = AutoTokenizer.from_pretrained(model_name, max_length=128, truncation=True)
6
7# Create text classification pipeline
8nlp = pipeline(
9 "text-classification",
10 model=model,
11 tokenizer=tokenizer,
12 max_length=128,
13 truncation=True
14)
15
16# Inference
17text = "Employees earn $45.00 per hour in this role."
18result = nlp(text)
19print(result)1[
2 {
3 "label": "hourly",
4 "score": 0.9876
5 }
6]pay-freq-v2 useful in your work, please consider citing:@article{meisenbacher2025extracting,
title={Extracting O* NET Features from the NLx Corpus to Build Public Use Aggregate Labor Market Data},
author={Meisenbacher, Stephen and Nestorov, Svetlozar and Norlander, Peter},
year={2025}
}