summaryrefslogtreecommitdiff
path: root/src/python/doc/cubical_complex_tflow_itf_ref.rst
blob: b32f5e47124e30089fbae1113d1ac47933a98c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
:orphan:

.. To get rid of WARNING: document isn't included in any toctree

TensorFlow layer for cubical persistence
########################################

.. include:: differentiation_sum.inc

Example of gradient computed from cubical persistence
-----------------------------------------------------

.. testcode::

    from gudhi.tensorflow import CubicalLayer
    import tensorflow as tf

    X = tf.Variable([[0.,2.,2.],[2.,2.,2.],[2.,2.,1.]], dtype=tf.float32, trainable=True)
    cl = CubicalLayer(homology_dimensions=[0])

    with tf.GradientTape() as tape:
        dgm = cl.call(X)[0][0]
        loss = tf.math.reduce_sum(tf.square(.5*(dgm[:,1]-dgm[:,0])))

    grads = tape.gradient(loss, [X])
    print(grads[0].numpy())

.. testoutput::

    [[ 0.   0.   0. ]
     [ 0.   0.5  0. ]
     [ 0.   0.  -0.5]]

Documentation for CubicalLayer
------------------------------

.. autoclass:: gudhi.tensorflow.CubicalLayer
   :members:
   :special-members: __init__
   :show-inheritance: