From 26877378eb3c5d824be46b4c0c1df038908b4017 Mon Sep 17 00:00:00 2001 From: Tim O'Donnell <timodonnell@gmail.com> Date: Tue, 19 Jun 2018 12:42:49 -0400 Subject: [PATCH] fix --- mhcflurry/class1_neural_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mhcflurry/class1_neural_network.py b/mhcflurry/class1_neural_network.py index b185fdba..0a0e7d99 100644 --- a/mhcflurry/class1_neural_network.py +++ b/mhcflurry/class1_neural_network.py @@ -957,4 +957,4 @@ class Class1NeuralNetwork(object): else: raise NotImplementedError( "Network surgery required: %s != %s" % ( - str(existing), str(allele_representations.shape))) + str(existing.shape), str(allele_representations.shape))) -- GitLab