🚀 HUPD T5-小型摘要模型
該HUPD T5-小型摘要模型在HUPD數據集上進行了微調。它最初在這篇論文中被提出。
如需瞭解有關哈佛美國專利商標局專利數據集(Harvard USPTO Patent Dataset)的更多信息,請訪問項目網站或項目的GitHub倉庫。
🚀 快速開始
✨ 主要特性
此模型基於HUPD數據集微調,能夠對相關文本進行有效摘要提取。
📦 安裝指南
文檔未提及具體安裝命令,跳過此章節。
💻 使用示例
基礎用法
你可以直接使用管道(pipeline)進行掩碼語言建模:
from transformers import pipeline
summarizer = pipeline(task="summarization", model="HUPD/hupd-t5-small")
TEXT = "1. An optical coherent receiver for an optical communication network, said optical coherent receiver being configured to receive a modulated optical signal and to process said modulated optical signal for generating an in-phase component and a quadrature component, said in-phase component and said quadrature component being electrical signals, said optical coherent receiver comprising a power adjuster in turn comprising: a multiplying unit configured to multiply said in-phase component by an in-phase gain thereby providing a power-adjusted in-phase component, and to multiply said quadrature component by a quadrature gain thereby providing a power-adjusted quadrature component; and a digital circuit connected between output and input of said multiplying unit and configured to compute: a common gain indicative of a sum of a power of said power-adjusted in-phase component and a power of said power-adjusted quadrature component, and a differential gain indicative of a difference between said power of said power-adjusted in-phase component and said power of said power-adjusted quadrature component; and said in-phase gain as a product between said common gain and said differential gain, and said quadrature gain as a ratio between said common gain and said differential gain. 2. An optical coherent receiver according to claim 1, wherein it further comprises an analog-to-digital unit connected at the input of said power adjuster, said analog-to-digital unit being configured to ..."
summarizer(TEXT)
以下是輸出結果:
[{'summary_text': 'An optical coherent receiver for an optical communication network includes a power adjuster and a digital circuit connected between output and input of the multiplying unit and configured to compute a common gain indicative of a sum of the power of an in-phase component and the power-adjusted quadrature component, and the differential gain as a product between the common gain and the diffractive gain.'}]
高級用法
你也可以加載模型並按如下方式使用:
import torch
from transformers import AutoTokenizer, AutoModelWithLMHead
device = 'cuda' if torch.cuda.is_available() else 'cpu'
tokenizer = AutoTokenizer.from_pretrained("HUPD/hupd-t5-small")
model = AutoModelWithLMHead.from_pretrained("HUPD/hupd-t5-small").to(device)
inputs = tokenizer(TEXT, return_tensors="pt").to(device)
with torch.no_grad():
outputs = model.generate(inputs.input_ids, max_new_tokens=256)
generated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
📚 詳細文檔
如需更多信息,請查看原始論文。
@article{suzgun2022hupd,
title={The Harvard USPTO Patent Dataset: A Large-Scale, Well-Structured, and Multi-Purpose Corpus of Patent Applications},
author={Suzgun, Mirac and Melas-Kyriazi, Luke and Sarkar, Suproteem K and Kominers, Scott Duke and Shieber, Stuart M},
journal={arXiv preprint arXiv:2207.04043},
year={2022}
}
📄 許可證
本模型採用CC BY-SA 4.0許可證。
信息表格
屬性 |
詳情 |
模型類型 |
HUPD T5-小型摘要模型 |
訓練數據 |
HUPD/hupd |
許可證 |
CC BY-SA 4.0 |
標籤 |
hupd、t5、summarization、conditional-generation、patents |