Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (84)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5547)

  • fate/cbs : add a decode model AV1 test

    1er décembre 2019, par James Almer
    fate/cbs : add a decode model AV1 test
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/cbs.mak
    • [DH] tests/ref/fate/cbs-av1-decode_model
  • dnn : add tf.nn.conv2d support for native model

    21 octobre 2019, par Guo, Yejun
    dnn : add tf.nn.conv2d support for native model
    

    Unlike other tf.*.conv2d layers, tf.nn.conv2d does not create many
    nodes (within a scope) in the graph, it just acts like other layers.
    tf.nn.conv2d only creates one node in the graph, and no internal
    nodes such as 'kernel' are created.

    The format of native model file is also changed, a flag named
    has_bias is added, so change the version number.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] libavfilter/dnn/dnn_backend_native.c
    • [DH] libavfilter/dnn/dnn_backend_native_layer_conv2d.c
    • [DH] libavfilter/dnn/dnn_backend_native_layer_conv2d.h
    • [DH] tests/dnn/dnn-layer-conv2d-test.c
    • [DH] tools/python/convert_from_tensorflow.py
    • [DH] tools/python/convert_header.py
  • avfilter/dnn : add a new interface to query dnn model's input info

    21 octobre 2019, par Guo, Yejun
    avfilter/dnn : add a new interface to query dnn model's input info
    

    to support dnn networks more general, we need to know the input info
    of the dnn model.

    background :
    The data type of dnn model's input could be float32, uint8 or fp16, etc.
    And the w/h of input image could be fixed or variable.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] libavfilter/dnn/dnn_backend_native.c
    • [DH] libavfilter/dnn/dnn_backend_tf.c
    • [DH] libavfilter/dnn_interface.h