Tianqi Chen

Results 637 comments of Tianqi Chen

can we update the configuration in the example?

You can try directly make

To do this, we will need to build up information about node shapes A quick way might be directly create a netconfig and a net in CPU by calling InitConnection,...

I pushed a fix for the nan problem. For timer, it should have went to another direction in https://github.com/dmlc/cxxnet/blob/master/src/utils/timer.h#L18

It was likely due to the fact that `__MACH__` was not defined in your compiler. Maybe you can try to change it to `__APPLE__` and see if things work for...

you want to keep the two underscores so it should be `__APPLE__` if these do not work for you. simply try to add `#define __MACH___` in the beginning of the...

alrite, it turns out to be our problem introduced in recent windows support. I have pushed a fix, please see if it works for you now. Sorry about the inconvenience

We will look into it. In the meanwhile, you can use other BLAS such as openBLAS or ATLAS, where the linking problem is easier

Currently no. But I think we can add an expression to support that

Note there is a special semantics on `=` in mshadow. So when you assign a tensor to another, it is a pointer copy instead of a assignment. So if you...