🚀 bart-base-job-info-summarizer
這個模型是基於 facebook/bart-base 在從招聘網站抓取的招聘信息私有數據集以及招聘信息的摘要結果上進行微調得到的。它可用於高效地總結公司和招聘信息,在摘要任務上有較好的表現。
🚀 快速開始
模型信息
屬性 |
詳情 |
模型類型 |
文本摘要模型 |
基礎模型 |
facebook/bart-base |
評估指標 |
rouge |
評估結果
評估指標 |
值 |
是否驗證 |
ROUGE - 1 |
0.32955500483066247 |
是 |
ROUGE - 2 |
0.13833204028540397 |
是 |
ROUGE - L |
0.27404767245323625 |
是 |
ROUGE - LSUM |
0.2747326116711135 |
是 |
預期用途和限制
此模型可用於以有說服力的方式總結公司和招聘信息。
使用示例
基礎用法
!pip install transformers
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("avisena/bart-base-job-info-summarizer")
model = AutoModelForSeq2SeqLM.from_pretrained("avisena/bart-base-job-info-summarizer")
input_text = """About Four Seasons
Four Seasons is powered by our people. We are a collective of individuals who crave to become better, to push ourselves to new heights and to treat each other as we wish to be treated in return. Our team members around the world create amazing experiences for our guests, residents, and partners through a commitment to luxury with genuine heart. We know that the best way to enable our people to deliver these exceptional guest experiences is through a world-class employee experience and company culture.
At Four Seasons, we believe in recognizing a familiar face, welcoming a new one and treating everyone we meet the way we would want to be treated ourselves. Whether you work with us, stay with us, live with us or discover with us, we believe our purpose is to create impressions that will stay with you for a lifetime. It comes from our belief that life is richer when we truly connect to the people and the world around us.
About the location:
Four Seasons Hotels and Resorts is a global, luxury hotel management company. We manage over 120 hotels and resorts and 50 private residences in 47 countries around the world and growing. Central to Four Seasons employee experience and social impact programming is the company’s commitment to supporting cancer research, and the advancement of diversity, inclusion, equality and belonging at Four Seasons corporate offices and properties worldwide. At Four Seasons, we are powered by people and our culture enables everything we do.
Staff Accountant
The Staff Accountant is responsible for transaction processing, accounting analysis, reporting, balance sheet reconciliations and other administrative duties in the Corporate Finance Department. The Staff Accountant is also involved with continuous process improvements and department projects.
The Staff Accountant may be assigned to various functions, including Accounts Payable, Accounts Receivable, General Ledger/Reconciliation, Global Programs, Payroll or Global Entities. As development opportunities arise, the Staff Accountant may rotate through one or more Corporate Finance functions listed above.
"""
inputs = tokenizer.encode(input_text, return_tensors="pt", max_length=1024, truncation='do_not_truncate')
summary_ids = model.generate(
inputs,
max_length=200,
min_length=30,
length_penalty=0.98,
num_beams=6,
top_p=3.7,
early_stopping=True,
temperature=1.4,
do_sample=True
)
summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True, max_length=512, truncation='do_not_truncate')
print(f"Generated Summary: {summary}")