|
How do you do this, for example like theano.shared(value=some_value, name='variable_name') I have given my parameters a name and want to give my cost a name as well so as that when I use t.grad(cost=cost, wrt=params, add_names=True) that it actually assigns a name to the gradient parameters. Thanks in advance! |
|
someone answered me on google groups, if anyone is interested you can assign a name directly to the "name" attribute of your cost! Eg cost.name = "description" |