Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5b1f910
Fix-c-1-5
Ricardo-shuo-liu Oct 23, 2025
ad75716
Merge branch 'develop' into fix-branch-c1-c2
Ricardo-shuo-liu Oct 24, 2025
fbbf40b
fix-t1-t5
Ricardo-shuo-liu Oct 24, 2025
a94aeec
Merge branch 'develop' into fix-t1-t5
Ricardo-shuo-liu Oct 24, 2025
8493e32
hat-fix
Ricardo-shuo-liu Oct 25, 2025
3950ddf
fix_HOT_1
Ricardo-shuo-liu Oct 25, 2025
a08239f
Merge branch 'fix-branch-c1-c2' of https://github.com/Ricardo-shuo-li…
Ricardo-shuo-liu Oct 25, 2025
78c9904
tired....
Ricardo-shuo-liu Oct 25, 2025
dc51402
ex.....
Ricardo-shuo-liu Oct 25, 2025
12a0876
del_typos
Ricardo-shuo-liu Oct 26, 2025
76ff6c7
test
Ricardo-shuo-liu Oct 26, 2025
639bd95
hat-fix
Ricardo-shuo-liu Oct 26, 2025
76b1311
.
Ricardo-shuo-liu Oct 26, 2025
2c74001
.
Ricardo-shuo-liu Oct 26, 2025
15c1d28
debug
Ricardo-shuo-liu Oct 26, 2025
1153f7a
world-debug
Ricardo-shuo-liu Oct 26, 2025
0c94a77
Merge branch 'develop' of https://github.com/PaddlePaddle/docs into f…
Ricardo-shuo-liu Oct 27, 2025
ece913b
fix-t6-t7
Ricardo-shuo-liu Oct 27, 2025
7cb7e67
Merge branch 'develop' of https://github.com/PaddlePaddle/docs into f…
Ricardo-shuo-liu Oct 28, 2025
f47effa
fix-t11-t15
Ricardo-shuo-liu Oct 28, 2025
147ebe8
Merge branch 'develop' into fix-t11-t15
Ricardo-shuo-liu Oct 29, 2025
0e8e905
Merge branch 'develop' into fix-t11-t15
Ricardo-shuo-liu Oct 30, 2025
9ab2c5f
debug
Ricardo-shuo-liu Oct 30, 2025
b8bbcbf
Merge branch 'develop' of https://github.com/PaddlePaddle/docs into f…
Ricardo-shuo-liu Oct 30, 2025
f421699
debug2
Ricardo-shuo-liu Oct 30, 2025
2ca66d4
Merge branch 'fix-t11-t15' of https://github.com/Ricardo-shuo-liu/doc…
Ricardo-shuo-liu Oct 30, 2025
b09098e
解决部分问题
Ricardo-shuo-liu Oct 30, 2025
f983648
fix-t11-t15
Ricardo-shuo-liu Oct 31, 2025
1c216f1
ipyngb_debug
Ricardo-shuo-liu Nov 1, 2025
eaf33d2
Merge branch 'develop' into fix-t11-t15
Ricardo-shuo-liu Nov 1, 2025
8d89615
Merge branch 'develop' into fix-t11-t15
Ricardo-shuo-liu Nov 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,3 @@ sucess = "sucess"
sucessor = "sucessor"
sucessors = "sucessors"
szie = "szie"
traing = "traing"
trainning = "trainning"
transfered = "transfered"
trasformed = "trasformed"
treshold = "treshold"
trian = "trian"
2 changes: 1 addition & 1 deletion docs/api/paddle/vision/ops/generate_proposals_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ generate_proposals
- **post_nms_top_n** (int,可选) - 每个图在 NMS 后要保留的总框数。默认值为 1000。
- **nms_thresh** (float,可选) - NMS 中的阈值。默认值为 0.5。
- **min_size** (float,可选) - 根据宽和高过滤候选框的阈值,宽或高小于该阈值的候选框将被过滤掉。默认值为 0.1。
- **eta** (float,可选) - 自适应阈值的衰减系数。仅在自适应 NMS 中且自适应阈值大于 0.5 时生效,在每次迭代中 ``adaptive_threshold = adaptive_treshold * eta`` 。默认值为 1.0。
- **eta** (float,可选) - 自适应阈值的衰减系数。仅在自适应 NMS 中且自适应阈值大于 0.5 时生效,在每次迭代中 ``adaptive_threshold = adaptive_threshold * eta`` 。默认值为 1.0。
- **pixel_offset** (bool, 可选)- 是否有像素偏移。如果是 True, ``img_size`` 在计算时会偏移 1。默认值为 False。
- **return_rois_num** (bool,可选) - 是否返回 ``rpn_rois_num`` 。当设定为 True 时会返回一个形状为[N,]的 1-D 的 Tensor,包含该 Batch 中每一张图片包含的 RoI 的数目。 N 是批大小和图片数量。默认值为 False。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。
Expand Down
2 changes: 1 addition & 1 deletion docs/design/concepts/tensor.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,4 @@ ViewIterator<ArrayView<T, D>> make_iterator(const Array<T, D>& in, Dim<D> idx) {

The operations that manipulate DArray are defined as global functions, such as `ones`, `zeros`, `reshape`, `gemm` and so on.

An array will be trasformed into an arrayview and then passed to the operation launching on a specific device(CPU/GPU).
An array will be transformed into an arrayview and then passed to the operation launching on a specific device(CPU/GPU).
2 changes: 1 addition & 1 deletion docs/design/mkldnn/caching/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Also MKL-DNN caching mechanism is used for transferring whole MKL-DNN memory all

##### Note on multi threading execution scenario
PaddlePaddle's program(models) can be executed by single thread as well as multiple threads. Graph's operators can be executed by different threads . In particular forward kernel of given operator may be executed by different thread
than backward kernel of the same instance of operator. In that situation hashing keys used for transferring MKL-DNN primitive descriptors cannot contain Thread ID specific values as key has to be shared among forward and backward kernel. Hence primitive descriptors (to be transfered to backward kernel) are using hashing key that does not contain any thread ID based value. As a result thread safety mechanics (critical section etc.) was employed to
than backward kernel of the same instance of operator. In that situation hashing keys used for transferring MKL-DNN primitive descriptors cannot contain Thread ID specific values as key has to be shared among forward and backward kernel. Hence primitive descriptors (to be transferred to backward kernel) are using hashing key that does not contain any thread ID based value. As a result thread safety mechanics (critical section etc.) was employed to
ensure MKL-DNN cache consistency.

### 4. Store once created MKL-DNN objects in order To avoid MKL-DNN recreation
Expand Down
2 changes: 1 addition & 1 deletion docs/design/modules/batch_norm_op.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ As most C++ operators do, `batch_norm_op` is defined by inputs, outputs, attribu
#### Attributes

- `is_infer`: *bool*. If true, run `batch_norm_op` in inferencing mode.
- `use_global_est`: *bool*. If true, use `saved_mean` and `saved_var` instead of `E[x]` and `STD[x]` in trainning.
- `use_global_est`: *bool*. If true, use `saved_mean` and `saved_var` instead of `E[x]` and `STD[x]` in training.
- `epsilon`: *float*. The epsilon value to avoid division by zero.
- `momentum`: *float*. Factor used in `estimated_mean` and `estimated_var` updating. The usage is shown above.

Expand Down
16 changes: 8 additions & 8 deletions docs/practices/quick_start/linear_regression.ipynb

Large diffs are not rendered by default.