直接使用Dense图层

时间:2017-04-25 13:39:33

标签: tensorflow neural-network

this file中,有一个var searchQuery = from c in db.Cars join b in db.Bookings on c.CarID equals b.CarID where c.Size == comboBox_CarType.Text && RentEndDate.SelectedDate < b.EndDate && RentStartDate.SelectedDate > b.StartDate select c.CarID + " - " + c.Make.Trim() + " - " + c.Model.Trim(); 图层的定义,以及它的功能对应部分Dense。我得到了如何使用dense;但在我的情况下,我需要对不同的输入多次应用相同的密集层;在我看来,直接使用dense比摆弄Dense更方便;但是,我无法使用它:

reuse

也没有关于它的文件;这是否意味着我不能这样做,并且必须使用非常不方便的设置和棘手的AttributeError: module 'tensorflow.python.layers.layers' has no attribute 'Dense'

0 个答案:

没有答案