Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/clab/dynet
/ functions
Functions
2,496 in github.com/clab/dynet
⨍
Functions
2,496
◇
Types & classes
546
↓ 6 callers
Method
checkpoint
dynet/dynet.cc:156
↓ 6 callers
Function
colbatch_matrix
* \brief Get the data as a matrix, where each "row" is the concatenation of rows, and each "column" is the concatenation of columns and batches * \re
dynet/tensor-eigen.h:219
↓ 6 callers
Function
constant
dynet/expr.cc:53
↓ 6 callers
Function
contract3d_1d
dynet/expr.cc:81
↓ 6 callers
Method
create_padding_positions_masks
examples/transformer/transformer.h:368
↓ 6 callers
Function
ensure_freshness
contrib/csharp/dynetsharp/dynetsharp/dynet.h:638
↓ 6 callers
Method
from_corpus
(cls, corpus)
examples/tensorboard/util.py:9
↓ 6 callers
Method
get_parameter_collection
Gets parameters in the RNNBuilder.
contrib/rust/src/rnn_builder.rs:258
↓ 6 callers
Function
hinge
dynet/expr.cc:115
↓ 6 callers
Method
isvalid
(self)
python/dynet_viz.py:38
↓ 6 callers
Function
new_builder_num
()
python/dynet_viz.py:393
↓ 6 callers
Method
print_graphviz
dynet/dynet.cc:372
↓ 6 callers
Function
random_gumbel
Creates a random gumbel vector.
contrib/rust/src/expr.rs:351
↓ 6 callers
Function
run_process
(cmds)
setup.py:31
↓ 6 callers
Method
scale_parameters
dynet/model.cc:590
↓ 6 callers
Function
select_rows
dynet/expr.cc:143
↓ 6 callers
Method
set_dropout
dynet/rnn.cc:83
↓ 6 callers
Method
set_s
* * \brief Set the internal state of a node (for lstms/grus) * \details For RNNs without internal states (SimpleRNN, GRU...), * this has the
dynet/rnn.h:105
↓ 6 callers
Method
set_value
dynet/model.cc:121
↓ 6 callers
Function
show_pool_mem_info
dynet/devices.h:102
↓ 6 callers
Method
state
* * \brief Get pointer to the current state * * \return Pointer to the current state */
dynet/rnn.h:44
↓ 6 callers
Function
strided_select
dynet/expr.cc:197
↓ 6 callers
Method
transition
dynet/rnn-state-machine.h:21
↓ 6 callers
Method
update
Updates parameters.
contrib/rust/src/training.rs:10
↓ 6 callers
Function
zeroes
For backward compatibility
dynet/expr.h:418
↓ 5 callers
Method
AdamTrainer
* \brief Constructor * * \param m ParameterCollection to be trained * \param learning_rate Initial learning rate * \param beta_1 Moving av
dynet/training.h:573
↓ 5 callers
Function
MatrixMultiply
dynet/matrix-multiply.h:16
↓ 5 callers
Function
ReadData
examples/multiprocessing/train_rnnlm-mp.cc:23
↓ 5 callers
Function
_add
(a, b)
python/dynet_viz.py:113
↓ 5 callers
Method
act
(self, obs)
examples/reinforcement-learning/ddpg.py:39
↓ 5 callers
Method
add_lookup
dynet/dynet.cc:251
↓ 5 callers
Method
as_scalar
Retrieves one internal value in the tensor. # Panics Panics if the tensor has more than one element.
contrib/rust/src/tensor.rs:49
↓ 5 callers
Method
aux_storage_size
dynet/dynet.cc:28
↓ 5 callers
Method
batch_ptr
* \brief Get the pointer for a particular batch * \details Automatically broadcasting if the size is zero * * \param bid Batch id requested
dynet/tensor.h:67
↓ 5 callers
Function
colwise_add
dynet/expr.cc:78
↓ 5 callers
Function
concatenate
Concatenates expressions
contrib/rust/src/expr.rs:1142
↓ 5 callers
Method
disable_dropout
* \brief Disable dropout * \details Do this during testing if you want a deterministic network */
examples/mnist/mlp.h:235
↓ 5 callers
Method
forward
( &mut self, sent: &[u32], cg: &mut ComputationGraph, apply_dropout: bool,
contrib/rust/examples/rnnlm/rnnlm.rs:44
↓ 5 callers
Method
get_unk_id
dynet/dict.h:66
↓ 5 callers
Function
initialize
Initializes DyNet. # Panics Panics if an invalid value is specified in `params`.
contrib/rust/src/init.rs:161
↓ 5 callers
Function
layer_norm_colwise_3
examples/transformer/expr-xtra.h:92
↓ 5 callers
Function
lookup
Looks up parameters.
contrib/rust/src/expr.rs:261
↓ 5 callers
Method
makeDim
(int[] dims)
contrib/swig/src/main/java/edu/cmu/dynet/examples/XorExample.java:13
↓ 5 callers
Function
move_vector_to_array_of_c_ptrs
contrib/c/dynet_c/internal.h:170
↓ 5 callers
Function
pick
Picks elements from batches
contrib/rust/src/expr.rs:1087
↓ 5 callers
Function
random_bernoulli
Creates a random bernoulli vector.
contrib/rust/src/expr.rs:319
↓ 5 callers
Function
random_normal
Creates a random normal vector.
contrib/rust/src/expr.rs:303
↓ 5 callers
Function
read_param_header
dynet/io.cc:41
↓ 5 callers
Method
revert
dynet/dynet.cc:160
↓ 5 callers
Method
set_used
dynet/aligned-mem-pool.cc:71
↓ 5 callers
Method
state
Gets pointer to the current state.
contrib/rust/src/rnn_builder.rs:10
↓ 5 callers
Method
swap_params_to_moving_average
dynet/training.cc:539
↓ 5 callers
Function
vanilla_lstm_gates_concat
dynet/expr.cc:257
↓ 5 callers
Function
vanilla_lstm_gates_dropout
dynet/expr.cc:290
↓ 5 callers
Method
vec_value
(self, recalculate=False)
python/dynet_viz.py:138
↓ 5 callers
Function
write_data
dynet/mp.h:95
↓ 4 callers
Method
BuildLMGraph
return Expression of total loss
examples/rnnlm/train_rnnlm.cc:50
↓ 4 callers
Method
LearnFromDatum
examples/multiprocessing/train_xor-mp.cc:89
↓ 4 callers
Function
MatrixMultiplyTranspAcc
dynet/matrix-multiply.h:162
↓ 4 callers
Method
add
examples/word-embedding/train_tok-embed.cc:74
↓ 4 callers
Method
add_const_lookup
dynet/dynet.cc:292
↓ 4 callers
Method
add_lookup_parameters
Adds lookup parameters.
contrib/rust/src/model.rs:306
↓ 4 callers
Function
argmax
dynet/expr.cc:63
↓ 4 callers
Function
attend
(input_mat, state, w1dt)
examples/sequence-to-sequence/attention.py:65
↓ 4 callers
Method
backward_inplaced
dynet/dynet.h:754
↓ 4 callers
Function
const_parameter
Loads constant parameter.
contrib/rust/src/expr.rs:246
↓ 4 callers
Function
conv2d
Applies 2D convolution operation without bias parameters
contrib/rust/src/expr.rs:1209
↓ 4 callers
Method
delete_dim
* \brief Remove one of the dimensions * \param i index of the dimension to be removed */
dynet/dim.h:212
↓ 4 callers
Method
disable_dropout
Disables dropout.
contrib/rust/src/rnn_builder.rs:125
↓ 4 callers
Function
embed_sentence
(sentence)
examples/sequence-to-sequence/attention.py:34
↓ 4 callers
Function
encode_sentence
(enc_fwd_lstm, enc_bwd_lstm, sentence)
examples/sequence-to-sequence/attention.py:54
↓ 4 callers
Function
ensure_freshness
(a)
python/dynet_viz.py:79
↓ 4 callers
Method
forward
(&self, x: E)
contrib/rust/examples/mnist/mnist.rs:21
↓ 4 callers
Method
forward
(self, x)
examples/variational-autoencoder/basic-image-recon/vae.py:106
↓ 4 callers
Function
get
contrib/csharp/dynetsharp/dynetsharp/dynet.h:1127
↓ 4 callers
Method
get
dynet/devices.h:83
↓ 4 callers
Function
get_args
* \brief Get parameters from command line arguments * \details Parses parameters from `argv` and check for required fields depending on the task *
examples/cpp-utils/cl-args.h:95
↓ 4 callers
Method
get_gradient
Gets the gradient for the given expression.
contrib/rust/src/graph.rs:81
↓ 4 callers
Function
hinge
Computes batched hinge loss
contrib/rust/src/expr.rs:924
↓ 4 callers
Function
hinge_dim
Computes batched dimensionwise hinge loss
contrib/rust/src/expr.rs:947
↓ 4 callers
Method
initialize_params
dynet/param-init.cc:10
↓ 4 callers
Method
isleaf
(self)
examples/treelstm/dataloader.py:57
↓ 4 callers
Method
load_param
dynet/io.cc:271
↓ 4 callers
Function
mean_batches
dynet/expr.cc:239
↓ 4 callers
Function
mean_dim
dynet/expr.cc:221
↓ 4 callers
Function
mean_elems
dynet/expr.cc:229
↓ 4 callers
Method
new_graph
Resets the internally used computation graph with a new one.
contrib/rust/src/rnn_builder.rs:22
↓ 4 callers
Method
new_graph
examples/word-embedding/train_tok-embed.cc:120
↓ 4 callers
Function
pickneglogsoftmax
Computes batched negative softmax log likelihood
contrib/rust/src/expr.rs:909
↓ 4 callers
Function
pickrange
dynet/expr.cc:192
↓ 4 callers
Method
print_graphviz
Visualizes the ComputationGraph.
contrib/rust/src/graph.rs:113
↓ 4 callers
Function
read_corpus
examples/transformer/data-utils.h:17
↓ 4 callers
Function
read_file
examples/segmental-rnn/train_segrnn-sup.cc:852
↓ 4 callers
Function
read_mnist
(dataset, path)
examples/mnist/mnist-autobatch.py:35
↓ 4 callers
Method
restart
Restarts the trainer.
contrib/rust/src/training.rs:17
↓ 4 callers
Function
run_lstm
(init_state, input_vecs)
examples/sequence-to-sequence/attention.py:43
↓ 4 callers
Method
sample
(self, batch_size)
examples/reinforcement-learning/memory.py:18
↓ 4 callers
Method
save
(self, fname)
python/dynet_viz.py:197
↓ 4 callers
Function
select_cols
dynet/expr.cc:145
↓ 4 callers
Function
softmax
Computes softmax
contrib/rust/src/expr.rs:880
← previous
next →
201–300 of 2,496, ranked by callers