91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • 怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器

怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器

發布時間:2022-02-28 16:25:56 來源:億速云 閱讀:155 作者:iii 欄目:開發技術

這篇文章主要介紹“怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器”文章能幫助大家解決問題。

介紹

NLP 技術最有用的應用之一是從非結構化文本(合同、財務文件、醫療記錄等)中提取信息,它支持自動數據查詢以獲得新的見解。傳統上,命名實體識別已被廣泛用于識別文本中的實體并存儲數據以進行高級查詢和過濾。但是,如果我們想從語義上理解非結構化文本,僅靠 NER 是不夠的,因為我們不知道實體之間是如何關聯的。執行聯合 NER 和關系提取將通過知識圖開辟一種全新的信息檢索方式,您可以在其中導航不同的節點以發現隱藏的關系。因此,聯合執行這些任務將是有益的。

在我之前的文章的基礎上,我們使用 spaCy 3 為 NER 微調了 BERT 模型,現在我們將使用 spaCy 的新 Thinc 庫將關系提取添加到管道中。我們按照spaCy 文檔中概述的步驟訓練關系提取模型。我們將比較使用轉換器和 tok2vec 算法的關系分類器的性能。最后,我們將在網上找到的職位描述上測試該模型。

關系分類

從本質上講,關系提取模型是一個分類器,用于預測給定實體對{e1, e2}的關系r。在轉換器的情況下,這個分類器被添加到輸出隱藏狀態的頂部。 

我們要微調的預訓練模型是基于 roberta 的模型,但您可以使用 Hugging Face 庫中可用的任何預訓練模型,只需在配置文件中輸入名稱(見下文)。

在本教程中,我們將提取兩個實體 {Experience, Skills} 之間的關系作為Experience_in和 {Diploma, Diploma_major} 之間的關系作為degree_in。目標是提取特定技能所需的多年經驗以及與所需文憑相關的文憑專業。當然,您可以為自己的用例訓練自己的關系分類器,例如在健康記錄或財務文件中的公司收購中查找癥狀的原因/影響。可能性是無限的……

在本教程中,我們將只介紹實體關系提取部分。使用spaCy 3對BERT NER進行微調,請參考我之前的文章。

數據標注

在這里我們使用UBIAI文本注釋工具來執行聯合實體和關系注釋,因為它的通用接口允許我們在實體和關系注釋之間輕松切換(見下文):

怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器UBIAI 的聯合實體和關系標注接口。

在本教程中,我只注釋了大約 100 個包含實體和關系的文檔。對于生產,我們肯定需要更多帶注釋的數據。

數據準備

在訓練模型之前,我們需要將帶注釋的數據轉換為二進制 spacy 文件。我們首先將 UBIAI 生成的 annotation 拆分為 training/dev/test 并分別保存。我們修改spaCy 的教程存儲庫中提供的代碼,為我們自己的注釋(轉換代碼)創建二進制文件。

我們對訓練、開發和測試數據集重復此步驟以生成三個二進制 spacy 文件(Github 中提供的文件)。

關系抽取模型訓練

對于訓練,我們將提供黃金語料庫中的實體,并在這些實體上訓練分類器。

  • 打開一個新的 Google Colab 項目,并確保在筆記本設置中選擇 GPU 作為硬件加速器。確保GPU是通過運行啟用:!nvidia-smi。

  • 安裝spacy-nightly:

!pip install -U spacy-nightly --pre
  • 安裝wheel包并克隆 spacy 的關系提取 repo:

!pip install -U pip setuptools wheel
!python -m spacy project clone tutorials/rel_component
  • 安裝變壓器管道和spacy transformers庫:

!python -m spacy download en_core_web_trf
!pip install -U spacy transformers
  • 將目錄更改為 rel_component 文件夾:cd rel_component.

  • 在 rel_component 中創建一個名為“data”的文件夾,并將訓練、開發和測試二進制文件上傳到其中:

怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器Training 文件夾

  • 打開 project.yml 文件并更新訓練、開發和測試路徑:

train_file: "data/relations_training.spacy"dev_file: "data/relations_dev.spacy"test_file: "data/relations_test.spacy"
  • 您可以通過轉到 configs/rel_trf.cfg 并輸入模型名稱來更改預訓練的轉換器模型(例如,如果您想使用不同的語言):

[components.transformer.model]@architectures = "spacy-transformers.TransformerModel.v1"name = "roberta-base" # Transformer model from huggingfacetokenizer_config = {"use_fast": true}
  • 在開始訓練之前,我們將max_lengthconfigs/rel_trf.cfg 中的 configs/rel_trf.cfg 從默認的 100 個令牌減少到 20 個以提高我們模型的效率。max_length 對應于兩個實體之間的最大距離,如果超過該距離,它們將不會被考慮用于關系分類。因此,來自同一文檔的兩個實體將被分類,只要它們彼此之間的最大距離(以標記數計)即可。

[components.relation_extractor.model.create_instance_tensor.get_instances] @misc = "rel_instance_generator.v1" max_length = 20
  • 我們終于準備好訓練和評估關系提取模型了;只需運行以下命令:

!spacy project run train_gpu # command to train transformers
!spacy project run evaluate # command to evaluate on test dataset

您應該開始看到 P、R 和 F 分數得到更新

模型完成訓練后,對測試數據集的評估將立即開始并顯示預測與黃金標簽。該模型將與我們模型的分數一起保存在名為“training”的文件夾中。

要訓練非變壓器模型tok2vec,請改為運行以下命令:

!spacy project run train_cpu # command to train train tok2vec
!spacy project run evaluate

我們可以比較兩個模型的性能:

# Transformer model
"performance":{"rel_micro_p":0.8476190476,"rel_micro_r":0.9468085106,"rel_micro_f":0.8944723618,}
# Tok2vec model
  "performance":{"rel_micro_p":0.8604651163,"rel_micro_r":0.7872340426,"rel_micro_f":0.8222222222,}

基于transformer的模型的準確率和召回分數明顯優于tok2vec,并證明了transformers在處理少量帶注釋數據時的有用性。

聯合實體和關系提取管道

假設我們已經像我之前的帖子一樣訓練了一個 Transformer NER 模型,我們將從在線找到的工作描述中提取實體(這不是訓練的一部分,也不是開發集的一部分),并將它們提供給關系提取模型以對關系。

  • 安裝空間變壓器和變壓器管道。

  • 加載 NER 模型并提取實體:

import spacynlp = spacy.load("NER Model Repo/model-best")Text=['''2+ years of non-internship professional software development experience
Programming experience with at least one modern language such as Java, C++, or C# including object-oriented design.1+ years of experience contributing to the architecture and design (architecture, design patterns, reliability and scaling) of new and current systems.Bachelor / MS Degree in Computer Science. Preferably a PhD in data science.8+ years of professional experience in software development. 2+ years of experience in project management.Experience in mentoring junior software engineers to improve their skills, and make them more effective, product software engineers.Experience in data structures, algorithm design, complexity analysis, object-oriented design.3+ years experience in at least one modern programming language such as Java, Scala, Python, C++, C#Experience in professional software engineering practices & best practices for the full software development life cycle, including coding standards, code reviews, source control management, build processes, testing, and operationsExperience in communicating with users, other technical teams, and management to collect requirements, describe software product features, and technical designs.Experience with building complex software systems that have been successfully delivered to customersProven ability to take a project from scoping requirements through actual launch of the project, with experience in the subsequent operation of the system in production''']for doc in nlp.pipe(text, disable=["tagger"]):   print(f"spans: {[(e.start, e.text, e.label_) for e in doc.ents]}")
  • 我們打印提取的實體:

spans: [(0, '2+ years', 'EXPERIENCE'), (7, 'professional software development', 'SKILLS'), (12, 'Programming', 'SKILLS'), (22, 'Java', 'SKILLS'), (24, 'C++', 'SKILLS'), (27, 'C#', 'SKILLS'), (30, 'object-oriented design', 'SKILLS'), (36, '1+ years', 'EXPERIENCE'), (41, 'contributing to the', 'SKILLS'), (46, 'design', 'SKILLS'), (48, 'architecture', 'SKILLS'), (50, 'design patterns', 'SKILLS'), (55, 'scaling', 'SKILLS'), (60, 'current systems', 'SKILLS'), (64, 'Bachelor', 'DIPLOMA'), (68, 'Computer Science', 'DIPLOMA_MAJOR'), (75, '8+ years', 'EXPERIENCE'), (82, 'software development', 'SKILLS'), (88, 'mentoring junior software engineers', 'SKILLS'), (103, 'product software engineers', 'SKILLS'), (110, 'data structures', 'SKILLS'), (113, 'algorithm design', 'SKILLS'), (116, 'complexity analysis', 'SKILLS'), (119, 'object-oriented design', 'SKILLS'), (135, 'Java', 'SKILLS'), (137, 'Scala', 'SKILLS'), (139, 'Python', 'SKILLS'), (141, 'C++', 'SKILLS'), (143, 'C#', 'SKILLS'), (148, 'professional software engineering', 'SKILLS'), (151, 'practices', 'SKILLS'), (153, 'best practices', 'SKILLS'), (158, 'software development', 'SKILLS'), (164, 'coding', 'SKILLS'), (167, 'code reviews', 'SKILLS'), (170, 'source control management', 'SKILLS'), (174, 'build processes', 'SKILLS'), (177, 'testing', 'SKILLS'), (180, 'operations', 'SKILLS'), (184, 'communicating', 'SKILLS'), (193, 'management', 'SKILLS'), (199, 'software product', 'SKILLS'), (204, 'technical designs', 'SKILLS'), (210, 'building complex software systems', 'SKILLS'), (229, 'scoping requirements', 'SKILLS')]

我們已經成功地從文本中提取了所有的技能、經驗年數、文憑和文憑專業!接下來,我們加載關系提取模型并對實體之間的關系進行分類。

注意:確保將 rel_pipe 和 rel_model 從腳本文件夾復制到您的主文件夾中

import randomimport typerfrom pathlib import Pathimport spacyfrom spacy.tokens import DocBin, Docfrom spacy.training.example import Examplefrom rel_pipe import make_relation_extractor, score_relationsfrom rel_model import create_relation_model, create_classification_layer, create_instances, create_tensors# We load the relation extraction (REL) modelnlp2 = spacy.load("training/model-best")# We take the entities generated from the NER pipeline and input them to the REL pipelinefor name, proc in nlp2.pipeline:
          doc = proc(doc)# Here, we split the paragraph into sentences and apply the relation extraction for each pair of entities found in each sentence.for value, rel_dict in doc._.rel.items():
        for sent in doc.sents:
          for e in sent.ents:
            for b in sent.ents:
              if e.start == value[0] and b.start == value[1]:
                if rel_dict['EXPERIENCE_IN'] >=0.9 :
                  print(f" entities: {e.text, b.text} --> predicted relation: {rel_dict}")

在這里,我們顯示了所有具有Experience_in關系且置信度得分高于 90%的實體:

"entities":("2+ years", "professional software development"") --> predicted relation":
{"DEGREE_IN":1.2778723e-07,"EXPERIENCE_IN":0.9694631}"entities":"(""1+ years", "contributing to the"") -->
predicted relation":
{"DEGREE_IN":1.4581254e-07,"EXPERIENCE_IN":0.9205434}"entities":"(""1+ years","design"") --> 
predicted relation":
{"DEGREE_IN":1.8895419e-07,"EXPERIENCE_IN":0.94121873}"entities":"(""1+ years","architecture"") --> 
predicted relation":
{"DEGREE_IN":1.9635708e-07,"EXPERIENCE_IN":0.9399484}"entities":"(""1+ years","design patterns"") --> 
predicted relation":
{"DEGREE_IN":1.9823732e-07,"EXPERIENCE_IN":0.9423302}"entities":"(""1+ years", "scaling"") --> 
predicted relation":
{"DEGREE_IN":1.892173e-07,"EXPERIENCE_IN":0.96628445}entities: ('2+ years', 'project management') --> 
predicted relation:
{'DEGREE_IN': 5.175297e-07, 'EXPERIENCE_IN': 0.9911635}"entities":"(""8+ years","software development"") -->
predicted relation":
{"DEGREE_IN":4.914319e-08,"EXPERIENCE_IN":0.994812}"entities":"(""3+ years","Java"") -->
predicted relation":
{"DEGREE_IN":9.288566e-08,"EXPERIENCE_IN":0.99975795}"entities":"(""3+ years","Scala"") --> 
predicted relation":
{"DEGREE_IN":2.8477e-07,"EXPERIENCE_IN":0.99982494}"entities":"(""3+ years","Python"") -->
predicted relation":
{"DEGREE_IN":3.3149718e-07,"EXPERIENCE_IN":0.9998517}"entities":"(""3+ years","C++"") -->
predicted relation":
{"DEGREE_IN":2.2569053e-07,"EXPERIENCE_IN":0.99986637}

值得注意的是,我們能夠正確提取幾乎所有多年的經驗以及他們各自的技能,沒有誤報或否定!

讓我們看看具有關系degree_in的實體:

entities: ('Bachelor / MS', 'Computer Science') -->
predicted relation: 
{'DEGREE_IN': 0.9943974, 'EXPERIENCE_IN':1.8361954e-09} entities: ('PhD', 'data science') --> predicted relation: {'DEGREE_IN': 0.98883855, 'EXPERIENCE_IN': 5.2092592e-09}

再次,我們成功提取了文憑和文憑專業之間的所有關系!

這再次證明了使用少量注釋數據將轉換器模型微調到您自己的特定領域案例是多么容易,無論是用于 NER 還是關系提取。

只有一百個帶注釋的文檔,我們就能夠訓練出一個性能良好的關系分類器。此外,我們可以使用這個初始模型以最少的校正自動注釋數百個未標記的數據。這可以顯著加快注釋過程并提高模型性能。

關于“怎么使用帶有spaCy3的BERT變換器訓練聯合實體和關系提取分類器”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

青铜峡市| 阳高县| 黄山市| 长兴县| 固安县| 壤塘县| 镇雄县| 耒阳市| 黄山市| 镇康县| 海盐县| 屯昌县| 衡山县| 尼勒克县| 潮州市| 常州市| 剑河县| 霸州市| 江门市| 儋州市| 泾源县| 鲜城| 乾安县| 宣城市| 炉霍县| 温泉县| 林甸县| 玉环县| 临西县| 容城县| 宽城| 阿瓦提县| 彝良县| 铅山县| 沭阳县| 景东| 淮阳县| 鄂伦春自治旗| 涞水县| 金塔县| 平南县|