Chewxy
Chewxy
This is a sample program I wrote. I can't seem to find an error. ``` package main import ( "log" G "gorgonia.org/gorgonia" ts "gorgonia.org/tensor" ) func main() { bweights :=...
ah now that you mention names, you should always give your input nodes a name. Note the following program and its output: ``` package main import ( "log" G "gorgonia.org/gorgonia"...
so you want an argmax? gimme 2 hrs.. I have a meeting to get to
Can you show me your code, and what the correct result should be
As mentioned.. can you paste some code of what you intend to do and some examples of correct answers On Fri, 21 Sep 2018, 11:45 zltgo, wrote: > @chewxy (Implement...
The `lispMachine` does not make any assumptions on what a cost node is. It just walks the way to the top of the graph, checks whether it's scalar (for the...
ps we'll get a Zenodo thing for gorgonia soon
Looking into this right now. I assume this is with the latest published version (as opposed to what is on `master` now?)
btw `WithShape(2,0)` is .... not correct. `(2,0)` is an invalid shape.
> Or do you mean that in general a tensor with a shape `(2, 0)` is not valid? This. In general anyway. Numpy for example, allows it. It breaks all...