forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Julia pkg demo #1
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ovided an example.
Bug fix updating the ACE loss function. Included a test case. Also pr…
* Added implementation of RMSProp, AdaGrad, AdaDelta * Added AdaMax and Nadam
* Fixed string conversion bug * Smaller eps for Float16 * Changed rand_tensors in julian way
* Fix build error in travis Another string conversion fix * Fixed JSON and added testsets * Fixed errors in julia 0.4
* Fix deprecation warning on v0.6 * drop support for v0.4
refactor windows support
wget was failing to download mxnet.json , so replaced them with Invoke-WebRequest
Using WebRequest function to download the JSON file
Disable Travis testing on v0.6 until apache#170 is addressed.
fix use of Symbol in symbolic-node.jl, fixes apache#189
remove BaseTestNext and bump Compat
remove usr/setupenv.cmd because it is too invasive
e.g. ``` sum(arr::NDArray) Defined in src/operator/tensor/broadcast_reduce_op_value.cc:L85 ```
Make this case work ```julia x = mx.NDArray([1, 2, 3]); x[:] = 1.1 ```
```julia mod_from!(x, y) mod_from!(x, 2) rmod_from!(2, x) ```
* ndarray: inplace modulo operators ```julia mod_from!(x, y) mod_from!(x, 2) rmod_from!(2, x) ``` * ndarray: support modulo operation for macro inplace Blocker: apache#389 * update doc
For creating NDArray with same type and dims
* `+` * `-` * `*` * `/` * `%` * `^` ```julia julia> x = NDArray([1 2 3; 4 5 6]) 2×3 mx.NDArray{Int64,2} @ CPU0: 1 2 3 4 5 6 julia> y = NDArray([1; 10]) 2-element mx.NDArray{Int64,1} @ CPU0: 1 10 julia> x .+ y 2×3 mx.NDArray{Int64,2} @ CPU0: 2 3 4 14 15 16 ```
```julia julia> x = mx.zeros(3) 3-element mx.NDArray{Float32,1} @ CPU0: 0.0 0.0 0.0 julia> copy!(x, 3:5) 3-element mx.NDArray{Float32,1} @ CPU0: 3.0 4.0 5.0 ```
```julia julia> NDArray([1, 2, 3]) 3-element mx.NDArray{Int64,1} @ CPU0: 1 2 3 julia> NDArray(Float32, [1, 2, 3]) 3-element mx.NDArray{Float32,1} @ CPU0: 1.0 2.0 3.0 ```
- export `broadcast_to`, `broadcast_axis`, `broadcast_axes`
* kvstore: refine and copy docstring from Python add a Base.show for KVStore docstring for set_updater set_updater -> setupdater! and test cases set_optimizer -> setoptimizer! sgd * docstring of setoptimizer!
- `ADD_CFLAGS` - `ADD_LDFLAGS` See dmlc/MXNet.jl#413 (comment)
* build: propagate CC/CXX into config.mk See: dmlc/MXNet.jl#418 (comment) * update doc
* build: propagate USE_JEMALLOC see dmlc/MXNet.jl#418 (comment)
In case of macOS, if user build libmxnet from source set MXNET_HOME, the output is still named as `libmxnet.so`. Ref: dmlc/MXNet.jl#423
more about julia version
- enable Jenkins CI build for Julia - add license headers to Julia source code - update links for Julia README
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.