forked from intel/BigDL
-
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
Update #2
Open
Deliadd
wants to merge
2,685
commits into
Deliadd:master
Choose a base branch
from
intel:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update #2
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
* add static graph to IR graph * meet pr comments
…n issue by docker (#2713) * make the core number fixed * fix local predictor
…ltiple times (#2648) * reserve optimMethod for each worker * add valdiation throughput * cache variable previousOptim
Because if we use the parent thread directly, there will be two bugs, 1. The child threads forked from parent thread will be bound to core 0 because of the affinity settings. 2. The native thread has some unknown thread local variables. So if the parent thread exits and is recreated, such as the thread from Executors.newFixedThreadPool. The whole app will be segment fault. The parent thread means the main thread (Local Mode) or worker thread of mapPartition (Distributed Mode).
* add ceilMode for Pooling & fix batchNorm evaluate * add training status for dnn layer * fix comments
* fix IRGraph init & Add regualizer * meet review comments
There're two issues, 1. the padding tensor required. mkl-dnn will use a padding tensor which will use more memory, such as 4x1x28x28 to 4x8x28x28(avx2). It will pad to times of simd width. 2. the TensorMMap between DenseTensor and DnnTensor. Previous impl will allocate DnnTensor when model is created, which will cost too much space. So this patch will allocate it at runtime.
…2740) * add computshape for some layer and add skip primitives in DnnGraph * meet pr comments
* Modify documentation * Modify documentation 2 * 修改了环境配置文档
* add auto fusion in dnn graph
* refactor predict for dnn model
* Modify documentation * Modify documentation 2 * 修改了环境配置文档 * Corrected some mistakes in the API Guide * Update learning rate scheduler doc. * Fix the Bottle Container example code.
* feat: add byte supports for DnnTensor
* [New Feature]Calculating Scales
* recursively update mask for container module
* add parallel in Blaswrapper * refactor to support ssd * meet pr comments * fix logger serialize
* Improve Loss Function docs v2
* change asInstanceOf to toDistirbuted * change asInstanceOf to toDistirbuted
* convert scale in blas to dnn * meet pr comment
1. Because the new data type, we should add a new attribute called dataType to the `MemoryData`. 2. Because we should transfer the scales between FP32->int8 and Int8->FP32. we should add two new attributes called `mask` and `scales`.
* fix accuracy for saved model * exclude mkldnn model when conversion
Enable the int8 data type in layers, especially for convolutions. So for a specific layer, it can accept a int8 input. If you want to the fp32 output, should add a reorder.
…is a byte array. (#3111)
* remove DLFrames * update * update * update * rm dlframe example from test script
* Add Utest about dividing zero * add Utest and zero check of LocalData * add Utest and zero check of LocalData * change * Add Utest about dividing zero * fix test
* add python3 to Dockerfile * update * update jdk * update
* make default DistriOptimizer as V2 * update
* DistriOptimizerV2 logger * update * fix style check * validate epoch num
* flip0.14 * update
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.