我可以在DNN中使用Tensorflow只使用一个" W"作为我的重量,如果我有3个隐藏层? 我看到其他人使用" W1"," W2"," W3"作为计算前向传播的权重变量 我的意思是输入层到第一个隐藏层我使用" W",第一个隐藏层到第二个隐藏层我使用" W",但是我让我的" W"成为其他维度(如" W2")来计算。 我可以这样做吗?
答案 0 :(得分:0)
如果你想轻松玩网络的大小(它们中的层数和神经元数),你可以这样做:
protected void btnSubmit_Click() {
// Get our data table from session.
DataTable table = (DataTable)Session["myData"];
// Create a new row.
DataRow dr = table.NewRow();
// Add to the row the values of the text boxes.
dr["Name"] = txtFamName.Value;
dr["Age"] = txtFamAge.Value;
// Save the row to the table.
table.Rows.Add(dr);
// Rebind the gridview and save it back in session.
GridView1.DataSource = table;
GridView1.DataBind();
Session["myData"] = table;
}
根据您的应用进行修改