MCPcopy Create free account

hub / github.com/clab/dynet / functions

Functions2,496 in github.com/clab/dynet

↓ 1,172 callersMethodsize
dynet/model.cc:98
↓ 629 callersFunctiontvec
* \brief Get the data as an order 1 Eigen tensor * \details this returns the full tensor contents as a one dimensional Eigen tensor which can be used
dynet/tensor-eigen.h:48
↓ 585 callersFunctionparameter
dynet/expr.cc:40
↓ 414 callersMethodsize
(self)
examples/tensorboard/util.py:16
↓ 404 callersMethodadd_parameters
dynet/model.cc:321
↓ 234 callersFunctiontbvec
* \brief Get the data as an order 2 tensor including batch size * \details this returns the full tensor contents as a two dimensional Eigen tensor wh
dynet/tensor-eigen.h:59
↓ 216 callersFunctioncheck_grad
dynet/grad-check.cc:15
↓ 145 callersMethodback
dynet/treelstm.cc:16
↓ 139 callersFunctioninput
dynet/expr.cc:18
↓ 125 callersMethodndims
* \brief Get number of dimensions * \return Number of dimensions */
dynet/dim.h:155
↓ 115 callersFunctionas_vector
dynet/tensor.cc:82
↓ 114 callersMethodvalue
Returns the value of the expression.
contrib/rust/src/expr.rs:44
↓ 108 callersMethodrows
* \brief Size of the first dimension * \return Size of the first dimension */
dynet/dim.h:160
↓ 104 callersMethodallocate
dynet/aligned-mem-pool.cc:8
↓ 96 callersFunctionreshape
dynet/expr.cc:141
↓ 90 callersFunctionas_scalar
dynet/tensor.cc:66
↓ 84 callersMethodadd_lookup_parameters
dynet/model.cc:412
↓ 84 callersMethodresize
* \brief Change the number of dimensions * * \param int New number of dimensions */
dynet/dim.h:146
↓ 84 callersFunctionsum_batches
dynet/expr.cc:218
↓ 83 callersMethodappend
* \brief Append a layer at the end of the network * \details [long description] * * \param model [description] * \param layer [description
examples/mnist/mlp.h:121
↓ 81 callersMethodadd_input
dynet/dynet.cc:172
↓ 81 callersFunctionaffine_transform
dynet/expr.cc:309
↓ 81 callersMethodclear
dynet/model.cc:111
↓ 79 callersMethodbatch_size
* \brief Size of a batch (product of all dimensions) * \return Size of a batch */
dynet/dim.h:106
↓ 73 callersFunctionconst_parameter
dynet/expr.cc:38
↓ 72 callersMethodbackward
dynet/exec.cc:160
↓ 72 callersMethodconvert
examples/noise-contrastive-estimation/sampler.h:34
↓ 71 callersFunctionlookup
dynet/expr.cc:42
↓ 70 callersFunctioncmult
dynet/expr.cc:76
↓ 70 callersFunctionmax
dynet/expr.cc:134
↓ 69 callersFunctionGVExpr
(name, args, dim)
python/dynet_viz.py:178
↓ 65 callersMethodget
Returns the specific dimension. This returns `1` if the specifie dimension does not exist. # Examples ``` # use dynet::Dim; let dim = Dim::from(([3
contrib/rust/src/dim.rs:256
↓ 63 callersMethodbatch_elems
* \brief Batch dimension * \return Batch dimension */
dynet/dim.h:181
↓ 62 callersMethodcols
* \brief Size of the second dimension (or 1 if only one dimension) * \return Size of the second dimension (or 1 if only one dimension) */
dynet/dim.h:176
↓ 58 callersMethoddim
* \brief Shape of the parameter * * \return Shape as a `Dim` object */
dynet/model.h:322
↓ 57 callersMethodnpvalue
(self, recalculate=False)
python/dynet_viz.py:139
↓ 54 callersMethodget_idx
dynet/sig.h:192
↓ 54 callersFunctionpick_batch_elem
dynet/expr.cc:186
↓ 54 callersMethodstart_new_sequence
* * \brief Reset for new sequence * \details call this before add_input and after new_graph, * when starting a new sequence on the same hyper
dynet/rnn.h:68
↓ 54 callersMethodupdate
(self, other, soft=False, tau=0.1)
examples/reinforcement-learning/network.py:8
↓ 50 callersFunctiontanh
dynet/expr.cc:95
↓ 47 callersFunctionmat
* \brief Get the data as an Eigen matrix * \return Eigen matrix */
dynet/tensor-eigen.h:21
↓ 45 callersMethodinitial_state
(self,vecs=None)
python/dynet_viz.py:463
↓ 45 callersFunctionsum
dynet/expr.cc:312
↓ 43 callersMethodforward
(self, x)
examples/mnist/basic-mnist-benchmarks/mnist_pytorch.py:62
↓ 42 callersFunctioninitialize
dynet/init.cc:218
↓ 40 callersFunctionexp
dynet/expr.cc:102
↓ 39 callersMethodpopulate
dynet/io.cc:145
↓ 37 callersMethodreset
examples/transformer/timer.h:17
↓ 34 callersFunctionmin
dynet/expr.cc:133
↓ 34 callersMethodsize
Returns the total size of the dim. The returned value is equal to the product of the number of elements in a batch and the number of batches (`batch_
contrib/rust/src/dim.rs:78
↓ 33 callersMethodfree
dynet/mem.cc:39
↓ 31 callersFunctionconcatenate
dynet/expr.cc:330
↓ 31 callersMethodforward
dynet/exec.cc:24
↓ 31 callersFunctionlog
dynet/expr.cc:101
↓ 30 callersFunctionlogistic
dynet/expr.cc:105
↓ 29 callersMethodParameterCollection
dynet/model.cc:290
↓ 29 callersFunctioncopy_dim
(a)
python/dynet_viz.py:83
↓ 28 callersFunctionmake_dim
(a, b=None, inferred=False)
python/dynet_viz.py:57
↓ 28 callersMethodstatus
dynet/training.h:242
↓ 27 callersMethodnew_graph
examples/multiprocessing/train_xor-mp.cc:30
↓ 27 callersFunctionsqrt
dynet/expr.cc:84
↓ 27 callersFunctiontranspose
dynet/expr.cc:142
↓ 26 callersMethodscalar_value
(self, recalculate=False)
python/dynet_viz.py:137
↓ 25 callersMethodincremental_forward
Runs forward pass from first node to given one.
contrib/rust/src/graph.rs:68
↓ 25 callersMethodsingle_batch
* \brief Set the batch dimension to 1 * \return 1-batch version of this instance */
dynet/dim.h:136
↓ 24 callersMethodget_fullname
dynet/model.cc:201
↓ 24 callersFunctionwrite_trainer_params
dynet/training.cc:73
↓ 23 callersMethodoutput
(self)
python/dynet_viz.py:653
↓ 23 callersFunctionpickneglogsoftmax
dynet/expr.cc:205
↓ 23 callersFunctionread_trainer_params
dynet/training.cc:93
↓ 22 callersMethodfreeze
examples/noise-contrastive-estimation/sampler.h:58
↓ 22 callersFunctionsoftmax
dynet/expr.cc:129
↓ 22 callersFunctionto_string
dynet/dynet-helper.h:15
↓ 21 callersMethodadd_subcollection
dynet/model.cc:295
↓ 21 callersFunctionconcatenate_cols
dynet/expr.cc:327
↓ 21 callersMethodsave
(self, save_dir, model_name)
examples/treelstm/model.py:91
↓ 20 callersMethodas_ref
(&self)
contrib/rust/src/expr.rs:103
↓ 20 callersFunctionpick_range
dynet/expr.cc:191
↓ 20 callersMethodsave
dynet/io.cc:76
↓ 19 callersFunctionExpression
contrib/csharp/dynetsharp/dynetsharp/dynet.h:184
↓ 19 callersMethodcurrent_weight_decay
dynet/model.cc:223
↓ 19 callersMethodis_updated
dynet/model.cc:219
↓ 19 callersMethodnew_graph
dynet/hsm-builder.cc:14
↓ 18 callersMethodModel
dynet/model.cc:523
↓ 18 callersFunctionlog_softmax
dynet/expr.cc:123
↓ 18 callersMethodnew_graph
examples/segmental-rnn/train_segrnn-sup.cc:93
↓ 18 callersFunctionstartswith
dynet/str-util.h:9
↓ 17 callersFunctionLooksLikeVector
dynet/nodes-def-macros.h:10
↓ 17 callersMethodadd_dim
* \brief Insert a dimension to the end * \param n the size of the new dimension */
dynet/dim.h:261
↓ 17 callersMethodadd_node
dynet/sig.h:35
↓ 17 callersFunctioninput
Inputs vector/matrix/tensor.
contrib/rust/src/expr.rs:141
↓ 17 callersMethodset
* \brief Set specific dimension * \details Set the value of a specific dimension to an arbitrary value * * \param i Dimension index * \par
dynet/dim.h:189
↓ 17 callersFunctionsquared_norm
dynet/expr.cc:152
↓ 17 callersMethodused
dynet/aligned-mem-pool.cc:62
↓ 16 callersMethodconstant
dynet/tensor.cc:386
↓ 16 callersFunctionget_device_manager
dynet/devices.cc:194
↓ 16 callersMethodget_weight_decay
Gets weight decay lambda value.
contrib/rust/src/model.rs:262
↓ 16 callersMethodinvalid
(self)
python/dynet_viz.py:39
↓ 16 callersFunctionrectify
dynet/expr.cc:106
next →1–100 of 2,496, ranked by callers