当前位置: 首页 > wzjs >正文

网站建设 三牛包就业的培训机构

网站建设 三牛,包就业的培训机构,哪个网站卖做阳具好点,伊春建设银行网站自然语言处理CBOW预测及模型的保存 目录 自然语言处理CBOW预测及模型的保存1 自然语言处理1.1 概念1.2 词向量1.2.1 one-hot编码1.2.2 词嵌入1.2.3 常见的词嵌入模型 2 CBOW预测模型搭建2.1 数据及模型确定2.1.1 数据2.1.2 CBOW模型2.1.3 词嵌入降维 2.2 数据预处理2.3 模型搭建…

自然语言处理CBOW预测及模型的保存

目录

  • 自然语言处理CBOW预测及模型的保存
    • 1 自然语言处理
      • 1.1 概念
      • 1.2 词向量
        • 1.2.1 one-hot编码
        • 1.2.2 词嵌入
        • 1.2.3 常见的词嵌入模型
    • 2 CBOW预测模型搭建
      • 2.1 数据及模型确定
        • 2.1.1 数据
        • 2.1.2 CBOW模型
        • 2.1.3 词嵌入降维
      • 2.2 数据预处理
      • 2.3 模型搭建
      • 2.4 训练、测试模型
      • 2.5 模型保存及词嵌入权重查看

1 自然语言处理


1.1 概念

自然语言处理(Natural Language Processing, NLP)是人工智能和语言学的一个交叉领域,旨在使计算机能够理解、处理和生成人类语言。

1.2 词向量

词向量(Word Embeddings):是自然语言处理(NLP)中的一种技术,将单词映射到高维向量空间,捕捉语义和语法特性,用于将单词表示为实数向量。这些向量在向量空间中具有这样的性质,即语义上相似的单词在向量空间中的距离相近。常见方法包括Word2Vec、GloVe、FastText等。词向量广泛应用于各种NLP任务,如文本分类、机器翻译、情感分析等。

1.2.1 one-hot编码
  • 概念:是一种将类别变量转换为二进制向量的编码方式,其中每个向量只有一个元素为1,其余为0。每个单词表示为一个高维稀疏向量
  • 缺点:维度灾难,无法捕捉单词间的语义关系。
    例如:对于一个包含三个单词的词汇表 [“apple”, “banana”, “cherry”],独热编码可能如下所示:
    • “apple” -> [1, 0, 0]
    • “banana” -> [0, 1, 0]
    • “cherry” -> [0, 0, 1]
1.2.2 词嵌入

词嵌入(Word Embedding)是自然语言处理(NLP)中的一种技术,用于将词汇表示为密集的向量词嵌入是词向量的一种实现方式,但通常词嵌入指的是通过神经网络模型学习到的向量表示,可以将独热编码的单词表示转换为更有意义且维度更低的词嵌入向量,将高维的独热编码向量转换为低维的密集向量,同时保留单词的语义信息。

  • 主要特点:
  1. 密集表示:与one-hot编码不同,词嵌入是低维密集向量,通常维度在几十到几百之间。
  2. 语义信息:相似的单词在嵌入空间中具有相似的向量表示,可以捕捉到单词的语义信息。
  3. 分布式表示:单词的表示分布在整个向量中,每个维度可能代表某种潜在的语义特征。
1.2.3 常见的词嵌入模型
  1. Word2Vec
    • CBOW(Continuous Bag of Words):通过上下文预测中心词。
    • Skip-Gram:通过中心词预测上下文。
  2. GloVe(Global Vectors for Word Representation)
    • 结合了全局矩阵分解和局部上下文窗口的方法,利用共现矩阵来训练词向量。
  3. FastText
    • 扩展了Word2Vec模型,将每个单词表示为组成它的字符n-gram的向量之和。
  4. ELMo(Embeddings from Language Models)
    • 基于预训练的语言模型,为每个单词生成动态的词向量表示。

2 CBOW预测模型搭建


2.1 数据及模型确定

2.1.1 数据

语料库:
We are about to study the idea of a computational process.
Computational processes are abstract beings that inhabit computers.
As they evolve, processes manipulate other abstract things called data.
The evolution of a process is directed by a pattern of rules
called a program. People create programs to direct processes. In effect,
we conjure the spirits of the computer with our spells.

2.1.2 CBOW模型

根据上文2个词汇、下文2个词汇预测中间1个词

2.1.3 词嵌入降维

由于语料库内容较少,所以将独热编码通过词嵌入降维至10维。

2.2 数据预处理

代码展示:

import torch
CONTEXT_SIZE = 2
# 语料库切分为单个词汇
raw_text = """We are about to study the idea of a computational process.
Computational processes are abstract beings that inhabit computers.
As they evolve, processes manipulate other abstract things called data.
The evolution of a process is directed by a pattern of rules
called a program. People create programs to direct processes. In effect,
we conjure the spirits of the computer with our spells.""".split()
# 集合去除重复词汇
vocab = set(raw_text)
# 所有词汇长度
vocab_size = len(vocab)
# 字典,可以根据字典便于后续处理
word_to_idx = {word:i for i,word in enumerate(vocab)}
idx_to_word = {i:word for i,word in enumerate(vocab)}
# 上下文内容和可预测内容,每个元素是一个元组 (context, target)
data = []
for i in range(CONTEXT_SIZE,len(raw_text)-CONTEXT_SIZE):context = ([raw_text[i - (2- j)] for j in range(CONTEXT_SIZE)]+ [raw_text[(i+ j + 1)] for j in range(CONTEXT_SIZE)])target = raw_text[i]data.append((context,target))
# 将上下文中的单词转换为对应的索引,并转为张量返回
def make_context_vector(context,word_to_ix):idxs = [word_to_ix[w] for w in context]return torch.tensor(idxs,dtype=torch.long)

2.3 模型搭建

class CBOW(nn.Module):def __init__(self, vocab_size, embedding_dim):super(CBOW, self).__init__()# 词嵌入低维密向量self.embeddings = nn.Embedding(vocab_size, embedding_dim)# 中间隐藏层self.proj = nn.Linear(embedding_dim, 128)# 输出层self.output = nn.Linear(128, vocab_size)# 前向传播过程def forward(self, inputs):embeds = sum(self.embeddings(inputs)).view(1, -1)out = F.relu(self.proj(embeds))out = self.output(out)nll_prob = F.log_softmax(out, -1)return nll_prob

2.4 训练、测试模型

代码展示:

import torch
from torch import nn
import torch.nn.functional as F
from tqdm import tqdmCONTEXT_SIZE = 2
raw_text = """We are about to study the idea of a computational process.
Computational processes are abstract beings that inhabit computers.
As they evolve, processes manipulate other abstract things called data.
The evolution of a process is directed by a pattern of rules
called a program. People create programs to direct processes. In effect,
we conjure the spirits of the computer with our spells.""".split()vocab = set(raw_text)
vocab_size = len(vocab)
word_to_idx = {word:i for i,word in enumerate(vocab)}
idx_to_word = {i:word for i,word in enumerate(vocab)}data = []
for i in range(CONTEXT_SIZE,len(raw_text)-CONTEXT_SIZE):context = ([raw_text[i - (2- j)] for j in range(CONTEXT_SIZE)]+ [raw_text[(i+ j + 1)] for j in range(CONTEXT_SIZE)])target = raw_text[i]data.append((context,target))def make_context_vector(context,word_to_ix):idxs = [word_to_ix[w] for w in context]return torch.tensor(idxs,dtype=torch.long)print(make_context_vector(data[0][0],word_to_idx))class CBOW((nn.Module)):def __init__(self,vocab_size,embedding_dim):super(CBOW,self).__init__()self.embeddings = nn.Embedding(vocab_size,embedding_dim)self.proj = nn.Linear(embedding_dim,128)self.output = nn.Linear(128,vocab_size)def forward(self,inputs):embeds = sum(self.embeddings(inputs)).view(1,-1)out = F.relu(self.proj(embeds))out = self.output(out)nll_prob = F.log_softmax(out,-1)return nll_probdevice = 'cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu'
print(f'Using {device} device')model = CBOW(vocab_size,10).to(device)
optimizer = torch.optim.Adam(model.parameters(), lr=0.001)losses = []
loss_function = nn.NLLLoss()
##  进入训练模式
model.train()
for epoch in tqdm(range(200)):totall_loss = 0for context,target in data:context_vector = make_context_vector(context,word_to_idx).to(device)target = torch.tensor([word_to_idx[target]]).to(device)train_pre = model(context_vector)loss = loss_function(train_pre,target)optimizer.zero_grad()loss.backward()optimizer.step()totall_loss +=loss.item()losses.append(totall_loss)# print(losses)context = ['People','create','to','direct']
context_vector = make_context_vector(context,word_to_idx).to(device)
model.eval()
pre = model(context_vector)
#获取预测结果中概率最大的索引。
max_idx = pre.argmax(1)
print(f'根据上文:{context[0],context[1]}和下文:{context[2],context[3]}预测中间内容:{max_idx}:{idx_to_word[max_idx.item()]}')

运行结果:
在这里插入图片描述
模型预测:上文(‘People’, ‘create’)和下文:(‘to’, ‘direct’)预测中间内容:tensor([28]):programs
实际语料库内容:People create programs to direct

2.5 模型保存及词嵌入权重查看

由于相较于torch,numpy应用范围更广泛,所以将模型保存为numpy的npz格式

# 保存词嵌入权重并转numpy
w = model.embeddings.weight.cpu().detach().numpy()
word2_vec = {}
for word in word_to_idx.keys():word2_vec[word] = w[word_to_idx[word],:]
print('结束')
import numpy as np
np.savez('word2vec实现.npz',file_1=w)
data = np.load('word2vec实现.npz')
print(data.files)
print(data[data.files[0]])

调试查看词嵌入权重:
在这里插入图片描述
在这里插入图片描述
运行结果:

在这里插入图片描述

http://www.dtcms.com/wzjs/286899.html

相关文章:

  • 吉林响应式网站价格深圳排名seo
  • 网站怎么做自己站长app拉新推广怎么做
  • 做渠道该从哪些网站入手今日军事新闻最新消息
  • 温州文成县高端网站设计seo推广策划
  • 利用angular做的网站怎样提高百度推广排名
  • 做网站的公司主要做shm电脑优化大师下载安装
  • 动态网页的文件扩展名新人学会seo
  • 网站开发发帖语言seo推广编辑
  • 网站排名 算法百度网站大全
  • 如何撰写一个网站规划建设方案入门seo技术教程
  • 做公司的网站企业网站管理系统
  • 莆田网站制作公司推广链接点击器网页
  • 仿站网站域名网站推广代理
  • 高端网站建设哪家好百度站长工具怎么用
  • 免费java源码分享网站源码关键词搜索数据
  • 网站怎么做防御成都网站建设方案托管
  • 云南建设厅查证网站武汉网络推广广告公司
  • 上海知名网站建基本营销策略有哪些
  • 网站数字签名seo查询优化
  • 江门网站推广排名北京seo多少钱
  • logo123seo矩阵培训
  • 东莞网站建设总结手机制作网站的软件
  • asp.net网站开发实战搜索引擎优化seo信息
  • 室内设计效果图360全景图西安seo排名
  • 网站原型广东今天新闻最新消息
  • 网站权重高 做别的关键词百度账号注销
  • 烟台cms建站模板seo免费诊断电话
  • 网站建设销售员话术网络平台有哪些
  • 网页设计导航栏代码模板网站是怎么优化的
  • 沧州市做网站的种子搜索引擎在线