Commit b98df28c authored by Michelle Gill's avatar Michelle Gill
Browse files

Fix GraphConvTensorGraph to GraphConvModel in clintox

parent 48672c67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ from __future__ import unicode_literals

import numpy as np

from models import GraphConvTensorGraph
from models import GraphConvModel

np.random.seed(123)
import tensorflow as tf
@@ -31,7 +31,7 @@ metric = dc.metrics.Metric(
n_feat = 75
# Batch size of models
batch_size = 50
model = GraphConvTensorGraph(
model = GraphConvModel(
    len(clintox_tasks), batch_size=batch_size, mode='classification')

# Fit trained model