Commit ec642727 authored by peastman's avatar peastman
Browse files

Fixed errors

parent e674b618
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# -*- coding: utf-8 -*-
import tensorflow as tf
import numpy as np
import collections
+1 −1
Original line number Diff line number Diff line
@@ -2841,7 +2841,7 @@ class WeightedLinearCombo(KerasLayer):

  def __init__(self, in_layers=None, std=.3, **kwargs):
    self.std = std
    super(WeightedLinearCombo, self).__init__(int_layers=in_layers, **kwargs)
    super(WeightedLinearCombo, self).__init__(in_layers=in_layers, **kwargs)
    try:
      self._shape = tuple(self.in_layers[0].shape)
    except: