Wolfram Neural Net Repository
Immediate Computable Access to Neural Net Models
Represent words as vectors
Released in 2014 by the computer science department at Stanford University, this 25-dimensional representation is trained using an original method called Global Vectors (GloVe). It encodes 1,193,515 tokens as unique vectors, with all tokens outside the vocabulary encoded as the zero-vector. Token case is ignored.
Number of layers: 1 | Parameter count: 29,837,875 | Trained size: 132 MB |
Get the pre-trained net:
In[1]:= | ![]() |
Out[1]= | ![]() |
Use the net to obtain a list of word vectors:
In[2]:= | ![]() |
Out[2]= | ![]() |
Obtain the dimensions of the vectors:
In[3]:= | ![]() |
Out[3]= | ![]() |
Use the embedding layer inside a NetChain:
In[4]:= | ![]() |
Out[4]= | ![]() |
Create two lists of related words:
In[5]:= | ![]() |
In[6]:= | ![]() |
Visualize relationships between the words using the net as a feature extractor:
In[7]:= | ![]() |
Out[7]= | ![]() |
Get the pre-trained net:
In[8]:= | ![]() |
Out[8]= | ![]() |
Get a list of words:
In[9]:= | ![]() |
Out[9]= | ![]() |
Obtain the vectors:
In[10]:= | ![]() |
Create an association whose keys are words and whose values are vectors:
In[11]:= | ![]() |
Find the eight nearest words to "king":
In[12]:= | ![]() |
Out[12]= | ![]() |
Man is to king as woman is to:
In[13]:= | ![]() |
Out[13]= | ![]() |
France is to Paris as Germany is to:
In[14]:= | ![]() |
Out[14]= | ![]() |
Inspect the number of parameters of all arrays in the net:
In[15]:= | ![]() |
Out[15]= | ![]() |
Obtain the total number of parameters:
In[16]:= | ![]() |
Out[16]= | ![]() |
Obtain the layer type counts:
In[17]:= | ![]() |
Out[17]= | ![]() |
Export the net into a format that can be opened in MXNet:
In[18]:= | ![]() |
Out[18]= | ![]() |
Export also creates a net.params file containing parameters:
In[19]:= | ![]() |
Out[19]= | ![]() |
Get the size of the parameter file:
In[20]:= | ![]() |
Out[20]= | ![]() |
The size is similar to the byte count of the resource object:
In[21]:= | ![]() |
Out[21]= | ![]() |
Represent the MXNet net as a graph:
In[22]:= | ![]() |
Out[22]= | ![]() |
Wolfram Language 11.2 (September 2017) or above