xushiwei
xushiwei
I don't understand what this issue means.
cool. I suggest we support both `gop` and `goplus` as Go+ tags. ```gop println("Hello, Go+") ```
https://github.com/gopcode/linguist
@damonchen No. In the Go language, token `;` can be omitted at line end (`\n`). So ```go a := [a11, a12, ..., a1N; a21, a22, ..., a2N; ...; aM1, aM2,...
Cool.
I suggest you splitting your work into small enhancements so that you can make pull request frequently. And this will make our cooperation smoothly.
github.com/goplus/numgoplus => [github.com/numgoplus/ng](https://github.com/numgoplus/ng)
In Go+ we will support a feature named [auto property](https://github.com/qiniu/goplus/issues/176#issuecomment-623999014). It means: ```go import ng "github.com/goplus/numgoplus" a := ng.arange(15).reshape(3, 5) fmt.Println(a) // array([[ 0, 1, 2, 3, 4], // [...
In Go+ we have [simplified form of 2d vector](https://github.com/qiniu/goplus/issues/385). It means: ```go b := ng.array([[1.5,2,3], [4,5,6]]) // array([[1.5, 2. , 3. ], // [4. , 5. , 6. ]]) ```...
In Go+, we can write as the following: ```go package main import ( "fmt" "github.com/gotorch/gotorch/at" "github.com/gotorch/gotorch/torch" "github.com/gotorch/gotorch/torch/optim" ) N, Din, H, Dout := 64, 1000, 100, 10 x := torch.RandN(N,...