Commit 91d325de authored by peastman's avatar peastman
Browse files

yapf

parent 4f1b9145
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -101,7 +101,9 @@ class MAML(object):
    """
    # Record inputs.

    raise Exception('MAML does not currently work correctly.  It needs to be rewritten to be compatible with modern TensorFlow')
    raise Exception(
        'MAML does not currently work correctly.  It needs to be rewritten to be compatible with modern TensorFlow'
    )
    self.learner = learner
    if isinstance(learner.loss, Layer):
      self._loss = learner.loss.out_tensor
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@ import numpy as np
import tensorflow as tf
import unittest


# class TestMAML(unittest.TestCase):
#
#   @flaky