Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #s
  • #se
  • #sem
RSS: #semantic

#semantic

  • #semanticui
  • #semantic-ui
  • #semantic-search
  • #semantic-segmentation
  • #semantic-datasets
  • #semanticweb
  • #semantic_web
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 2/06/2018

    Automated Survey Processing using Contextual Semantic Search
    ▻https://hackernoon.com/automated-survey-processing-using-contextual-semantic-search-1f9135ff278

    https://cdn-images-1.medium.com/max/1024/1*985gTuIpJQR16H-dC11Yhg.png

    With the recent advances in deep learning, the ability of algorithms to analyze text has improved considerably. Now analyzing digital and social media is not restricted to just basic sentiment analysis and count based metrics. Creative use of advanced artificial intelligence techniques can be an effective tool for doing in-depth research. We believe it is important to classify incoming customer conversation about a brand based on following lines:Key aspects of a brand’s product and service that customers care about.Users’ underlying intentions and reactions concerning those aspects.These basic concepts when used in combination, become a very important tool for analyzing millions of brand conversations with human-level accuracy. In the post, we take the example of Uber and demonstrate how (...)

    #contextual-search #semantic-search #contextual-semantic #surveys #survey-processing

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 29/03/2018

    Semantic Segmentation Datasets for Autonomous Driving
    ▻https://hackernoon.com/semantic-segmentation-datasets-for-autonomous-driving-1182ebd2aff0?sourc

    An understanding of open data sets for urban semantic segmentation shall help one understand how to proceed while training models for self-driving cars.Originally published on Playment.ioMyriad efforts have been made over the last 10 years in algorithmic improvements and #dataset creation for semantic segmentation tasks. Of late, there have been rapid gains in this field, a subset of visual scene understanding, due mainly to contributions by deep learning methodologies. But deep learning techniques have an Achilles’ heel of consuming vast amounts of annotated data. Here we review some widely used and open, urban semantic segmentation datasets for Self Driving Car applications.What is Semantic Segmentation?The task of Semantic Segmentation is to annotate every pixel of an image with an (...)

    #semantic-datasets #self-driving-cars #semantic-segmentation #autonomous-driving

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 20/03/2018

    What is Training Data, Really ?
    ▻https://hackernoon.com/what-is-training-data-really-adf0b97a116c?source=rss----3a8144eabfe3---4

    This article was initially published on Playment’s ML Blog.This is a simple definition of Training Data.Machines are much faster at processing and storing knowledge compared to humans. But how can one leverage their speed to create intelligent machines? The answer to this question — make them feed on relevant data. This is also referred to as Training data.Machine learning models are not too different from a human child. When a child observes a new object, say for example a dog and receives constant feedback from its environment, the child is able to learn this new piece of knowledge.Machines too can learn when they see enough relevant data. Using this you can model algorithms to find relationships, detect patterns, understand complex problems and make decisions.Eventually, the quality, (...)

    #deep-learning #machine-learning #semantic-segmentation #training-data #computer-vision

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @mist_
    Mist. GraphX @mist_ 11/02/2018
    1
    @spip
    1

    Qu’elle classe ce code css ;-)

    Responsive Elements - Semantic
    ▻https://semantic-ui.com/examples/responsive.html

    Bon semantic ui est bien connu, plus qu’il n’est utilisé certainement. Mais en retombant dans mes notes, sur cette page, je suis toujours séduis par l’approche de ce code css.

    Loin des BEM, et autres méthodes verbeuse et finalement lourdes à rédiger, la on est dans la simplicité, tout semble logique, lisible.

    Si on regarde bien comment c’est foutu, on se rends compte que la spécificité des classes est super ciblé, verrouillée, sans pour autant utiliser des classes verbeuse de Block__elm—pod.is-elem-state

    tout est dans ::not ou ~= , ^=

    un peut comme dans une boucle spip quand on enlève ce qu’on veut pas, pour récupérer ce que l’on veut ^^

    L’autre avantage de cette méthode est aussi d’économiser sur les css générées, j’ai fais quelques test et il y’a un gain significatif sur des composant tout bêtes comme des labels, ou icones.

    #css#méthodologies#web-design

    Mist. GraphX @mist_
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 11/02/2018

      Sauf que bem n’est pas fait par hasard comme ça, d’une ya la cohérence total avec vraiment 100% toujours la même manière d’écrire mais surtout c’est fait pour être le plus rapide possible à exécuter par les navigateurs.

      .ui.segments:not(.horizontal) > .segment:first-child est très long à compiler et trouver, c’est méga complexe comme sélecteur.

      .segments_vertical .segments__segment:first-child est beaucoup plus rapide

      RastaPopoulos @rastapopoulos CC BY-NC
    • @mist_
      Mist. GraphX @mist_ 11/02/2018

      +1 effectivement, la ça mérite des tests réels de temps de rendu navigateur, plutôt qu’une estimation de gain en kbytes transférés.

      Quand je vois le pross de mon vieux mac sur une page ou j’ai pas mal d’animations css3, ça peut vite aller dans le rouge suivant comment c’est rédigé. Donc le parcours du dom comme tu le souligne est forcément plus couteux avec des pseudo selector.

      Du coup, ça me donne envi de de réfléchir a un suite de test la dessus. En fait j’ai un petite lib qui est inspiré de bem_selectors, en fait ça gère le nomage des selecteurs, mais en fonction de plusieurs conventions … pour le moment SMACSS, OOCSS, BEM, et Rscss …

      Pour faire ce genre de test, ça peut être interressant, de prendre une page type, et de générer un rapport de perf entre les différentes méthodologies, vu qu’on peut switcher en changeant une map.

      Mist. GraphX @mist_
    • @jeanmarie
      jeanmarie @jeanmarie CC BY-NC-SA 11/02/2018

      Il y a #Grillade de #KNACSS aussi : ►https://knacss.com/grillade
      Je commence a l’utiliser à la place de celle de #SemanticUI

      #intégration #flexbox #grille #responsive

      jeanmarie @jeanmarie CC BY-NC-SA
    • @mist_
      Mist. GraphX @mist_ 11/02/2018

      En fait je n’utilise pas semantic ui, ;-) mais je lis le code de tout le monde, j’aime bien regarder surtout les approches différentes, ça sert toujours un jour, dans une certaine situation ^^.

      Au départ je lisais ceci ▻http://bradfrost.github.io/this-is-responsive/patterns.html#layout

      et cela ▻https://github.com/oddbird/accoutrement-layout

      dans le but de créer un composant/lib scss qui gère tout le layout de manière « générique »… comme on a un support qui commence a être correct de grid et flex, ça simplifie quand même bien le boulot.

      Mist. GraphX @mist_
    Écrire un commentaire
  • @severo
    severo @severo PUBLIC DOMAIN 4/01/2015

    Sur semanticui.com, le slogan

    HTML | is the vocabulary of the web.

    se transforme en

    User Interface | is the vocabulary of the web.

    Effectivement, on sent bien que la semantique #HTML ne les intéresse pas trop : ils/elles font les listes avec des <div> !

    ▻http://semantic-ui.com/elements/list.html

    <div class="ui list">
     <div class="item">Apples</div>
     <div class="item">Pears</div>
     <div class="item">Oranges</div>
    </div>

    #semanticui

    • #HTML
    • #HTML
    severo @severo PUBLIC DOMAIN
    Écrire un commentaire
  • @fil
    Fil @fil 9/10/2014
    1
    @geneghys
    1

    Sir Tim Berners-Lee speaks out on data ownership | theguardian.com
    ▻http://www.theguardian.com/technology/2014/oct/08/sir-tim-berners-lee-speaks-out-on-data-ownership

    Berners-Lee said that “people only look at one angle” of #big_data. “When you read big data pieces in a magazine, it’s about how big companies are spying on you. A lot of the marvel of big data is a threat to me.

    “What are these people going to do with that data? They’re going to target you with an ad which makes you feel a bit queasy. Targeted adverts are not the future.”

    Instead, users should own their own data and be free to merge it with other sets as and when it could provide them useful insight (…) #semantic_web

    #surveillance

    • #Tim Berners-Lee
    Fil @fil
    Écrire un commentaire
  • @grommeleur
    grommeleur @grommeleur 8/09/2014

    W3C Publishes Linked Data Platform Best Practices and Guidelines
    ▻http://semanticweb.com/w3c-publishes-linked-data-platform-best-practices-guidelines_b44199

    The W3C’s Linked Data Platform (LDP) Working Group has published a document outlining best practices and guidelines for implementing Linked Data Platform servers and clients.

    ▻http://www.w3.org/TR/ldp-bp
    #metadata #semantic

    grommeleur @grommeleur
    Écrire un commentaire
  • @visionscarto
    visionscarto @visionscarto 27/04/2014
    2
    @james
    @ben
    2

    Logiciels
    ▻http://visionscarto.net/logiciels

    Le site Visionscarto fonctionne avec des logiciels libres. Le socle en est SPIP, le système de publication sur Internet auquel nous contribuons depuis 2001. De nombreux plugins sont utilisés, certains bien connus, d’autres plus obscurs : ZPIP (z-core + zpip_html5) pour organiser le code des pages ; adaptive_images, pour télécharger les images adaptées à la taille de l’écran ; ancres_douces, bellespuces, orthotypo, pour certaines finitions ; les crayons, pour faciliter les corrections des (...)

    #Ressources_libres

    « ►http://www.spip.net »
    « ▻http://zone.spip.org/trac/spip-zone/browser/_plugins_/z-core »
    « ▻http://zone.spip.org/trac/spip-zone/browser/_plugins_/zpip_html5 »
    « ▻http://contrib.spip.net/4458 »
    « ▻http://contrib.spip.net/Ancres-douces »
    « ▻http://contrib.spip.net/Belles-puces »
    « ►http://contrib.spip.net/Ortho-typographie »
    « ▻http://contrib.spip.net/Les-crayons »
    « ►http://tinytypo.tetue.net »
    « ►http://seenthis.net/messages/250985 »
    « ▻http://zone.spip.org/trac/spip-zone/browser/_plugins_/ressource »
    « ►https://bitbucket.org/recifs/tuile »
    « ▻https://bitbucket.org/recifs/squelettes-visionscarto »
    « ▻http://scholarsfonts.net/cardofnt.html »
    « ▻http://www.boldmonday.com/fr/nittigrotesk »

    visionscarto @visionscarto
    • @fil
      Fil @fil 27/04/2014

      ça envoie côté URLs…

      Fil @fil
    • @fil
      Fil @fil 28/04/2014

      j’avais oublié #semantic-ui

      Fil @fil
    Écrire un commentaire
  • @robin
    robin @robin CC BY 12/03/2014
    2
    @fil
    @habbon
    2

    jxnblk/geomicons-open
    ▻https://github.com/jxnblk/geomicons-open

    Open Source Icons for the Web

    robin @robin CC BY
    • @fil
      Fil @fil 12/03/2014

      ça ressemble beaucoup aux icones de #semantic-ui

      Fil @fil
    • @severo
      severo @severo PUBLIC DOMAIN 12/03/2014

      #icones #css

      severo @severo PUBLIC DOMAIN
    Écrire un commentaire
  • @marcimat
    marcimat @marcimat 3/02/2014
    4
    @fil
    @rastapopoulos
    @habbon
    @severo
    4
    @fil

    ►http://semantic-ui.com , «Semantic empowers designers and developers by creating a language for sharing UI.»

    Un succédané de #bootstrap.

    Via @fil sur l’irc SPIP.

    marcimat @marcimat
    • @marcimat
      marcimat @marcimat 3/02/2014

      Hum, cité aussi là ►http://seenthis.net/messages/199765 avec le tag #semantic-ui

      marcimat @marcimat
    Écrire un commentaire
  • @touti
    vide @touti 23/11/2013
    13
    @rastapopoulos
    @severo
    @habbon
    @baroug
    @ari
    @fil
    @james
    @kozlika
    @erwan_deverre
    @tetue
    @nhoizey
    @cy_altern
    13

    Responsive CSS Framework Comparison: Bootstrap, Foundation, Skeleton
    ▻http://responsive.vermilion.com
    La seule manière de comparer est de s’y plonger un tant soit peu.
    #Framework #industrialisation_web

    vide @touti
    • @touti
      vide @touti 23/11/2013

      @nicod
      Ma petite conclusion est que les frameworks CSS nécessitent un temps d’apprentissage conséquent.
      La valeur d’un framework augmenterait-t-elle avec la complication du code ?
      Il faut maitriser l’usine à gaz pour que la personnalisation soit possible sinon aucun risque de s’écarter de la standardisation industrielle ;)
      D’autre part pourquoi se créer toujours des dépendances et pourquoi forcer la main avec des « //fonts.googleapis.com/css ?… » que ce soit avec KickStart, foundation, typeandgrids ou les thèmes SpipR ? L’hégémonie de Google n’est-elle pas suffisante ?
      Concernant les classes propriétaires, je suis pas sure de comprendre ce que tu veux dire. Critiques-tu le fait qu’après avoir simplifié le code en séparant bien la forme et le fond, basculant au web sémantique, en simplifiant les balises en html5 on se retrouve maintenant à écrire des classes spécifiques longues comme le bras ?

      #technocratie #do_the_web

      vide @touti
    • @touti
      vide @touti 26/11/2013

      La technocratie est la prédominance de la technique sur et dans le politique.
      La technocratie relègue au second plan la question du que fait-on ensemble et comment, puisque l’efficacité de la production prévaut.
      C’est un écueil du libre, être un lieu d’expansion du libéralisme ou la concurrence est de mise, ou courir après le dernier machin à la mode serait indispensable.
      Je te rejoins sur le fait qu’on peut très bien être curieux de technique et exercer une veille technologique régulière mais s’inquiéter de l’essentiel soit la politique qui est exercée derrière, l’humain et pas la machine à fabriquer des sites.

      vide @touti
    • @touti
      vide @touti 2/12/2013

      Tiens, dans les commentaires, un article du Feb 29, 2012
      Please stop embedding Bootstrap classes in your HTML !
      ▻http://ruby.bvision.com/blog/please-stop-embedding-bootstrap-classes-in-your-html

      vide @touti
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 3/12/2013

      Ah mais ouiii, en plus je les ai déjà utilisé une fouè !

      Il est donc totalement possible de n’ajouter aucune classe ou presque dans son HTML tout en utilisant Bootstrap.

      Reste le fait que c’est tout en Pixels, et non pas en Ems. Donc pas super joli joli.

      L’adaptation bootstrap2spip ajoute toutefois des variables tels que @emFontSize ou @emLineHeight, qui sont notamment utilisées pour remplacer entièrement le type.less de Bootstrap.

      RastaPopoulos @rastapopoulos CC BY-NC
    • @fil
      Fil @fil 2/02/2014
      @nicod_ @visionscarto @reka

      je tiens à vous remercier tou·te·s (#merci) pour cette discussion, et notamment @nicod_ pour avoir mentionné #semantic-ui ; je l’ai #testé_et_approuvé aujourd’hui (pour le futur site de @visionscarto, ping @reka).

      Ce petit framework css/js bat à plate couture les bootstrap et autres, en termes de :
      – concept : les classes ont une définition qui n’est pas juste ad hoc, mais vraiment logique
      – documentation : c’est bien propre
      – modularité : tu ne prends que ce dont tu as besoin
      – esthétique : car en plus, c’est joli

      Fil @fil
    • @marcimat
      marcimat @marcimat 3/02/2014

      Ah, bien la recherche de seenthis ne m’avait pas trouvé l’URL, mais en fait un post existait bien mentionnant semantic-ui. J’ai du coup créé ▻http://seenthis.net/messages/224381

      Ceci dit, sur l’esthétique, je trouve que certains textes par défaut manquent de contrastes pour mes petits yeux.

      marcimat @marcimat
    • @touti
      vide @touti 6/03/2018
      @nicod_

      Lien vers quelques explication du plugin SPIP
      ►https://seenthis.net/messages/205041
      @nicod_ back !

      vide @touti
    Écrire un commentaire
  • @vlentz
    vlentz @vlentz CC BY-SA 20/06/2013

    AlchemyAPI | Transforming text into knowledge
    ▻http://www.alchemyapi.com

    Tags : #semantic #api #metadata

    • #API
    vlentz @vlentz CC BY-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 2/09/2011

    The #Semantic #Grid System
    ►http://semantic.gs

    #Page #layout for tomorrow.

    Set #column and #gutter widths, choose the number of columns, and switch between pixels and percentages.

    All without any ugly .grid_x classes in your markup. Oh, and did we mention it’s #responsive?

    #grille #responsive_web_design

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @fil
    Fil @fil 29/08/2011
    2
    @julien
    @nhoizey
    2

    #CSS - The #Semantic #Grid System : Page Layout For Tomorrow - Smashing Magazine
    ►http://coding.smashingmagazine.com/2011/08/23/the-semantic-grid-system-page-layout-for-tomorrow

    une #grid sans les défauts des grid, utilise le moteur #LESS

    Fil @fil
    • @nhoizey
      Nicolas Hoizey @nhoizey CC BY-NC-SA 2/09/2011
      @htmlzg

      Oh bin @htmlzg a fait mieux ici : ►http://typographisme.net/post/Macro-typographie-sur-le-Web-–-Less-is-more
      #less #grille #css

      Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 2/11/2009

    Semantic Overflow
    ►http://www.semanticoverflow.com

    #semanticweb #reference #collaboration #howto #semantic #webdev #faq

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 11/09/2009

    A skim-read introduction to linked data
    ►http://www.bbc.co.uk/blogs/radiolabs/s5/linked-data/s5.html

    #SemanticWeb #rdf #web #semantic #html #rdfa #research #slideshow

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 1/04/2009

    sioc-project.org | Semantically-Interlinked Online Communities
    ►http://sioc-project.org

    #SemanticWeb #websocial #rdf #FOAF

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 27/11/2008

    Getting Semantic With Microformats, Introduction ~ A Blog Not Limited
    ►http://www.ablognotlimited.com/articles/getting-semantic-with-microformats-introduction

    quelques bon billets sur les µformats

    #web #webdev #SemanticWeb #microformats #standards #sémantique

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 7/08/2008

    FOAF : le réseau social garanti sans pub ! | Les petites cases
    ►http://www.lespetitescases.net/foaf-le-reseau-social-garanti-sans-pub

    Des idées, des tentatives... chez drupal :)

    #semanticweb #social_network #websocial #spip #foaf #Interopérabilité #réseaux_sociaux #réseau_social #rdf #decentralisé #décentralisé

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 25/07/2008

    SCOT:Let’s Share Tags! » papers about tag ontologies
    ►http://scot-project.org/2008/06/25/papers-about-tag-ontologies

    There are many efforts to bridge between social tagging and Semantic Web technologies. Although we focused on representation issues of tagging activities, it might be useful to know current efforts.

    #scot #tag #tagging #semantic #semweb #social #tagsonomy #tagopedia:todo

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 23/06/2008

    Web Sémantique:PagePrincipale
    ►http://websemantique.org/PagePrincipale

    #communauté #foaf #french #internet #semanticweb #sémantique #web

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 19/06/2008

    SemanticHacker
    ►http://www.semantichacker.com

    pareil, ils mangent comment ces gens ?

    #semantic #api #semanticweb #business #datamining

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 19/06/2008

    Home | OpenCalais
    ►http://www.opencalais.com

    groumph, mais ils mangent comment ces braves gens ?

    #ajax #analyse #semanticweb #api #metadata #webservices #reuters #datamining

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 18/06/2008

    RDFa vs microformats from Evan Prodromou
    ►http://evan.prodromou.name/RDFa_vs_microformats

    bon article

    #microformats #rdf #rdfa #semanticweb #xhtml #semantic #web

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 6/03/2008

    FOAF Vocabulary Specification
    ►http://xmlns.com/foaf/spec

    #rdf #reference #SemanticWeb #specification #ontology #Social #metadata #FOAF #tydebs

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire

Thèmes liés

  • #semanticweb
  • #rdf
  • #web
  • technology: rdf
  • #foaf
  • #metadata
  • #api
  • #css
  • #grid
  • #social
  • #reference
  • #webdev
  • #datamining
  • technology: api
  • #rdfa
  • #grille
  • #semantic-ui
  • #websocial
  • #microformats
  • #sémantique
  • #responsive
  • #less
  • technology: html
  • #slideshow
  • #responsive_web_design
  • #réseau_social
  • industryterm: grille responsive web design
  • #réseaux_sociaux
  • publishedmedium: smashing magazine
  • #interopérabilité
  • city: css
  • #spip
  • #collaboration
  • #social_network
  • industryterm: µformats web webdev
  • #research
  • #howto
  • #standards
  • #scot
  • industryterm: online communities