thirdwing commented on a change in pull request #7476: R-package RNN refactor
URL: https://github.com/apache/incubator-mxnet/pull/7476#discussion_r133259264
 
 

 ##########
 File path: R-package/R/rnn.graph.R
 ##########
 @@ -0,0 +1,123 @@
+library(mxnet)
+
+# RNN graph design
+rnn.graph <- function(num.rnn.layer, 
+                      input.size,
+                      num.embed, 
+                      num.hidden,
+                      num.label,
+                      dropout = 0,
+                      ignore_label = 0,
+                      init.state = NULL,
+                      config,
+                      cell.type="gru",
+                      masking = T,
+                      output_last_state = F) {
+  
+  # define input arguments
+  label <- mx.symbol.Variable("label")
+  data <- mx.symbol.Variable("data")
+  seq.mask <- mx.symbol.Variable("seq.mask")
+  
+  embed.weight <- mx.symbol.Variable("embed.weight")
+  rnn.params.weight <- mx.symbol.Variable("rnn.params.weight")
+  rnn.state.weight <- mx.symbol.Variable("rnn.state.weight")
+  if (cell.type == "lstm") rnn.state.cell.weight <- 
mx.symbol.Variable("rnn.state.cell.weight")
+  cls.weight <- mx.symbol.Variable("cls.weight")
+  cls.bias <- mx.symbol.Variable("cls.bias")
+  
+  data <- mx.symbol.transpose(data=data)  
+  # seq.mask <- mx.symbol.stop_gradient(seq.mask, name="seq.mask")
+  
+  embed <- mx.symbol.Embedding(data=data, input_dim=input.size,
+                               weight=embed.weight, output_dim=num.embed, 
name="embed")
+  
+  if (cell.type == "lstm") {
+    rnn <- mx.symbol.RNN(data=embed, state=rnn.state.weight, state_cell = 
rnn.state.cell.weight, parameters=rnn.params.weight, state.size=num.hidden, 
num.layers=num.rnn.layer, bidirectional=F, mode=cell.type, state.outputs=F, 
p=dropout, name=paste(cell.type, num.rnn.layer, "layer", sep="_"))
+    
+  } else {
+    rnn <- mx.symbol.RNN(data=embed, state=rnn.state.weight, 
parameters=rnn.params.weight, state.size=num.hidden, num.layers=num.rnn.layer, 
bidirectional=F, mode=cell.type, state.outputs=F, p=dropout, 
name=paste(cell.type, num.rnn.layer, "layer", sep="_"))
+  }
+  
+  if (config=="seq-to-one") {
+    
+    if (masking) mask <- mx.symbol.SequenceLast(data=rnn[[1]], 
use.sequence.length = T, sequence_length = seq.mask, name = "mask") else
+      mask <- mx.symbol.identity(data = rnn[[1]], name = "mask")
+    
+    fc <- mx.symbol.FullyConnected(data=mask,
+                                   weight=cls.weight,
+                                   bias=cls.bias,
+                                   num.hidden=num.label,
+                                   name = "decode")
+    
+    loss <- mx.symbol.SoftmaxOutput(data=fc, name="sm", label=label, 
ignore_label=ignore_label)
+    
+  } else if (config=="one-to-one"){
+    
+    if (masking) mask <- mx.symbol.SequenceMask(data = rnn[[1]], 
use.sequence.length = T, sequence_length = seq.mask, name = "mask") else
+      mask <- mx.symbol.identity(data = rnn[[1]], name = "mask")
+    
+    reshape = mx.symbol.reshape(mask, shape=c(num.hidden, -1))
+    
+    fc <- mx.symbol.FullyConnected(data=reshape,
+                                   weight=cls.weight,
+                                   bias=cls.bias,
+                                   num.hidden=num.label,
+                                   name = "decode")
+    
+    label <- mx.symbol.reshape(data=label, shape=c(-1))
+    loss <- mx.symbol.SoftmaxOutput(data=fc, name="sm", label=label, 
ignore_label=ignore_label)
+    
+  }
+  
+  if (output_last_state){
+    # group <- mx.symbol.Group(c(unlist(last.states), loss))
+    # return(group)
+    return(loss)
+  } else return(loss)
+}
+
+
+
+# data <- mx.symbol.Variable("data")
 
 Review comment:
   Can we remove the testing code?
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to