Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Machine Learning
avec Scikit-Learn
Voir le programme détaillé
Classe « Transform »

Méthode matplotlib.artist.Transform.transform_affine

Signature de la méthode transform_affine

def transform_affine(self, values) 

Description

help(Transform.transform_affine)

Apply only the affine part of this transformation on the
given array of values.

``transform(values)`` is always equivalent to
``transform_affine(transform_non_affine(values))``.

In non-affine transformations, this is generally a no-op.  In
affine transformations, this is equivalent to
``transform(values)``.

Parameters
----------
values : array
    The input values as an array of length :attr:`input_dims` or
    shape (N, :attr:`input_dims`).

Returns
-------
array
    The output values as an array of length :attr:`output_dims` or
    shape (N, :attr:`output_dims`), depending on the input.


Vous êtes un professionnel et vous avez besoin d'une formation ? Deep Learning avec Python
et Keras et Tensorflow
Voir le programme détaillé