當前位置: 首頁>>代碼示例>>Python>>正文


Python models.TensorGraph類代碼示例

本文整理匯總了Python中deepchem.models.TensorGraph的典型用法代碼示例。如果您正苦於以下問題:Python TensorGraph類的具體用法?Python TensorGraph怎麽用?Python TensorGraph使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了TensorGraph類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_Conv1D_pickle

def test_Conv1D_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1, 1))
  conv = Conv1D(2, 1, in_layers=feature)
  tg.add_output(conv)
  tg.set_loss(conv)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例2: test_Reshape_pickle

def test_Reshape_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = Reshape(shape=(None, 2), in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例3: test_Repeat_pickle

def test_Repeat_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = Repeat(n_times=10, in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例4: test_Exp_pickle

def test_Exp_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = Exp(feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例5: test_Dense_pickle

def test_Dense_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  dense = Dense(out_channels=1, in_layers=feature)
  tg.add_output(dense)
  tg.set_loss(dense)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例6: test_StopGradient_pickle

def test_StopGradient_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  output = StopGradient(feature)
  tg.add_output(output)
  tg.set_loss(output)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例7: test_DTNNEmbedding_pickle

def test_DTNNEmbedding_pickle():
  tg = TensorGraph()
  atom_numbers = Feature(shape=(None, 23), dtype=tf.int32)
  Embedding = DTNNEmbedding(in_layers=[atom_numbers])
  tg.add_output(Embedding)
  tg.set_loss(Embedding)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例8: test_Gather_pickle

def test_Gather_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = Gather(indices=[[0], [2], [3]], in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例9: test_BatchNorm_pickle

def test_BatchNorm_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 10))
  layer = BatchNorm(in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例10: test_WeightedError_pickle

def test_WeightedError_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 10))
  layer = WeightedError(in_layers=[feature, feature])
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例11: test_Conv3DTranspose_pickle

def test_Conv3DTranspose_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 10, 10, 10, 1))
  layer = Conv3DTranspose(num_outputs=3, in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例12: test_ReduceSquareDifference_pickle

def test_ReduceSquareDifference_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = ReduceSquareDifference(in_layers=[feature, feature])
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例13: test_ToFloat_pickle

def test_ToFloat_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 1))
  layer = ToFloat(in_layers=[feature])
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例14: test_LSTM_pickle

def test_LSTM_pickle():
  tg = TensorGraph()
  feature = Feature(shape=(tg.batch_size, 10, 10))
  layer = LSTM(n_hidden=10, batch_size=tg.batch_size, in_layers=feature)
  tg.add_output(layer)
  tg.set_loss(layer)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py

示例15: test_DTNNExtract_pickle

def test_DTNNExtract_pickle():
  tg = TensorGraph()
  atom_features = Feature(shape=(None, 30))
  Ext = DTNNExtract(0, in_layers=[atom_features])
  tg.add_output(Ext)
  tg.set_loss(Ext)
  tg.build()
  tg.save()
開發者ID:AhlamMD,項目名稱:deepchem,代碼行數:8,代碼來源:test_layers_pickle.py


注:本文中的deepchem.models.TensorGraph類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。