diff --git a/Orange/classification/neural.py b/Orange/classification/neural.py index 4be28d9b6..774de8973 100644 --- a/Orange/classification/neural.py +++ b/Orange/classification/neural.py @@ -264,7 +264,7 @@ def __call__(self, example, result_type=Orange.core.GetValue): :rtype: :class:`Orange.data.Value`, :class:`Orange.statistics.Distribution` or a tuple with both """ - example = Orange.data.Instance(self.domain, example) + #example = Orange.data.Instance(self.domain, example) # transform example to numpy if not self.domain.class_vars: example = [example[i] for i in range(len(example)-1)]