(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
{ | |
"embeddings": [ | |
{ | |
"tensorName": "Wiki2Vec PTBR", | |
"tensorShape": [ | |
748532, | |
300 | |
], | |
"tensorPath": "", | |
"metadataPath": "" |
# required tensorflow 0.12 | |
# required gensim 0.13.3+ for new api model.wv.index2word or just use model.index2word | |
from gensim.models import Word2Vec | |
import tensorflow as tf | |
from tensorflow.contrib.tensorboard.plugins import projector | |
import numpy as np | |
# loading your gensim | |
model = Word2Vec.load("YOUR-MODEL") |
I hereby claim:
To claim this, I am signing this object:
body { | |
background: url('http://sbvirtual.com.br/imagens/hixs_pattern_evolution.png'); | |
} | |
#wrapper { | |
background: #ffffff; | |
margin: 0 auto; | |
width: 960px; | |
height: 600px; |
/* Checkbox Hack */ | |
input[type=radio] { | |
position: absolute; | |
top: -9999px; | |
left: -9999px; | |
} | |
label { | |
-webkit-appearance: push-button; | |
-moz-appearance: button; |