"docs/vscode:/vscode.git/clone" did not exist on "f861cde14f168ee3da391ed423d411968b456b9d"
Unverified Commit 4a8fc917 authored by light1003's avatar light1003 Committed by GitHub
Browse files

Update det_basic_loss.py

to_variable has been removed in paddle 2.0,using to_tensor instead
parent a2fb623f
...@@ -200,6 +200,6 @@ def ohem_batch(scores, gt_texts, training_masks, ohem_ratio): ...@@ -200,6 +200,6 @@ def ohem_batch(scores, gt_texts, training_masks, ohem_ratio):
i, :, :], ohem_ratio)) i, :, :], ohem_ratio))
selected_masks = np.concatenate(selected_masks, 0) selected_masks = np.concatenate(selected_masks, 0)
selected_masks = paddle.to_variable(selected_masks) selected_masks = paddle.to_tensor(selected_masks)
return selected_masks return selected_masks
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment