Package parsimony :: Package functions :: Package multiblock :: Module properties :: Class MultiblockLipschitzContinuousGradient
[hide private]
[frames] | no frames]

Class MultiblockLipschitzContinuousGradient

source code

object --+
         |
        MultiblockLipschitzContinuousGradient
Known Subclasses:

Nested Classes [hide private]
  __metaclass__
Metaclass for defining Abstract Base Classes (ABCs).
Instance Methods [hide private]
 
L(self, w, index)
Lipschitz constant of the gradient with given index.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset(['L'])
  _abc_cache = <_weakrefset.WeakSet object at 0x318a590>
  _abc_negative_cache = <_weakrefset.WeakSet object at 0x318a610>
  _abc_negative_cache_version = 10
  _abc_registry = <_weakrefset.WeakSet object at 0x318a4d0>
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

L(self, w, index)

source code 
Lipschitz constant of the gradient with given index.

Parameters
----------
w : List of numpy arrays. The weight vectors, w[index] is the point at
        which to evaluate the Lipschitz constant.

index : Non-negative integer. The variable for which the Lipschitz
        constant should be evaluated.

Decorators:
  • @abc.abstractmethod