Skip to main content

Paradise papers

Ciao,

hai seguito la vicenda dei Paradise Papers? Ho appena firmato una lettera aperta scritta da Gordon Brown, ex primo ministro inglese, per la chiusura dei paradisi fiscali. La consegnerà direttamente al G20! Firmala anche tu, la trovi qui: https://secure.avaaz.org/campaign/it/paradise_papers_loc/?kFmlKbb


Inviato dal mio smartphone LG

Comments

Popular posts from this blog

Word2vec - Sentiment Analysis

Word2vec è un modello (evoluzione Doc2vec) https://sourcedexter.com/tensorflow-text-classification/ https://github.com/tflearn/tflearn Vector space models   (VSMs) represent (embed) words in a continuous vector space where semantically similar words are mapped to nearby points ('are embedded nearby each other') Word2vec is a particularly computationally-efficient predictive model for learning word embeddings from raw text. It comes in two flavors, the Continuous Bag-of-Words model (CBOW) and the Skip-Gram model (Section 3.1 and 3.2 in   Mikolov et al. ) Skip Gram Model http://mccormickml.com/2016/04/19/word2vec-tutorial-the-skip-gram-model/ Bag-Of-Words Model https://ongspxm.github.io/blog/2014/12/bag-of-words-natural-language-processing/ Il modello è semplice perchè usa un trucco del auto-encoder l'output layer fa deve ritornare la stessa cosa dell'input (apprendimento supervisionato anche se non si hanno le label) poi si rimuove il livello di output e si ottengono i p...