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

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行torchkeras的原理分析

發布時間:2021-12-10 10:50:54 來源:億速云 閱讀:176 作者:柒染 欄目:大數據

如何進行torchkeras的原理分析,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

torchkeras 是在pytorch上實現的仿keras的高層次Model接口。有了它,你可以像Keras那樣,對pytorch構建的模型進行summary,compile,fit,evaluate , predict五連擊。一切都像行云流水般自然。

聽起來,torchkeras的功能非常強大。但實際上,它的實現非常簡單,全部源代碼不足300行。如果你想理解它實現原理的一些細節,或者修改它的功能,不要猶豫閱讀和修改項目源碼。

安裝它僅需要運行:

pip install torchkeras

公眾號后臺回復關鍵詞:torchkeras。獲取項目git源代碼和本文全部源碼!

下面是一個使用torchkeras來訓練模型的完整范例。我們設計了一個3層的神經網絡來解決一個正負樣本按照同心圓分布的分類問題。

import numpy as np 
import pandas as pd 
from matplotlib import pyplot as plt
import torch
from torch import nn
import torch.nn.functional as F
from torch.utils.data import Dataset,DataLoader,TensorDataset

from torchkeras import Model,summary #Attention this line!

一,準備數據

構造按照同心圓分布的正負樣本數據。

%matplotlib inline
%config InlineBackend.figure_format = 'svg'

#number of samples
n_positive,n_negative = 2000,2000

#positive samples
r_p = 5.0 + torch.normal(0.0,1.0,size = [n_positive,1]) 
theta_p = 2*np.pi*torch.rand([n_positive,1])
Xp = torch.cat([r_p*torch.cos(theta_p),r_p*torch.sin(theta_p)],axis = 1)
Yp = torch.ones_like(r_p)

#negative samples
r_n = 8.0 + torch.normal(0.0,1.0,size = [n_negative,1]) 
theta_n = 2*np.pi*torch.rand([n_negative,1])
Xn = torch.cat([r_n*torch.cos(theta_n),r_n*torch.sin(theta_n)],axis = 1)
Yn = torch.zeros_like(r_n)

#concat positive and negative samples
X = torch.cat([Xp,Xn],axis = 0)
Y = torch.cat([Yp,Yn],axis = 0)


#visual samples
plt.figure(figsize = (6,6))
plt.scatter(Xp[:,0],Xp[:,1],c = "r")
plt.scatter(Xn[:,0],Xn[:,1],c = "g")
plt.legend(["positive","negative"]);

如何進行torchkeras的原理分析

# split samples into train and valid data.
ds = TensorDataset(X,Y)
ds_train,ds_valid = torch.utils.data.random_split(ds,[int(len(ds)*0.7),len(ds)-int(len(ds)*0.7)])
dl_train = DataLoader(ds_train,batch_size = 100,shuffle=True,num_workers=2)
dl_valid = DataLoader(ds_valid,batch_size = 100,num_workers=2)

二,構建模型

我們通過對torchkeras.Model進行子類化來構建模型,而不是對torch.nn.Module的子類化來構建模型。實際上 torchkeras.Model是torch.nn.Moduled的子類。

class DNNModel(Model):  ### Attention here
    def __init__(self):
        super(DNNModel, self).__init__()
        self.fc1 = nn.Linear(2,4)
        self.fc2 = nn.Linear(4,8) 
        self.fc3 = nn.Linear(8,1)
        
    def forward(self,x):
        x = F.relu(self.fc1(x))
        x = F.relu(self.fc2(x))
        y = nn.Sigmoid()(self.fc3(x))
        return y
        
model = DNNModel()
model.summary(input_shape =(2,))

如何進行torchkeras的原理分析

三,訓練模型

我們需要先用compile將損失函數,優化器以及評估指標和模型綁定。然后就可以用fit方法進行模型訓練了。

關于如何進行torchkeras的原理分析問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

绥德县| 旅游| 金湖县| 济阳县| 光山县| 崇阳县| 石首市| 原阳县| 清流县| 杨浦区| 堆龙德庆县| 安庆市| 油尖旺区| 尼勒克县| 上虞市| 改则县| 新乐市| 泰和县| 子长县| 栾川县| 临夏市| 平乡县| 吴川市| 南江县| 加查县| 乃东县| 海原县| 西贡区| 博湖县| 东乡族自治县| 新邵县| 武平县| 东方市| 博乐市| 白银市| 大化| 瑞丽市| 广东省| 池州市| 广河县| 响水县|