Skip to main content

Le tracce audio più rilassanti

1. Marconi Union - Weightless
2. Airstream - Electra
3. DJ Shah - Mellomaniac (Chill Out Mix)
4. Enya - Watermark
5. Coldplay - Strawberry Swing
6. Barcelona - Please Don't Go
7. All Saints - Pure Shores
8. AdelevSomeone Like You
9. Mozart - Canzonetta Sull'aria
10. Cafe Del Mar - We Can Fly 

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...