Skip to content

Commit 9a5809f

Browse files
chenbjinxyzhou-puck
authored andcommitted
add cuda_check in PaddleNLP emotion_detection (#2731)
* add cuda_check * add cuda_check in emotion_detection
1 parent b758129 commit 9a5809f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

PaddleNLP/emotion_detection/run_classifier.py

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import numpy as np
1919

2020
from models.classification import nets
21+
from models.model_check import check_cuda
2122
import reader
2223
import config
2324
import utils
@@ -374,4 +375,5 @@ def get_cards():
374375

375376
if __name__ == "__main__":
376377
utils.print_arguments(args)
378+
check_cuda(args.use_cuda)
377379
main(args)

PaddleNLP/emotion_detection/run_ernie_classifier.py

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
from preprocess.ernie import task_reader
2121
from models.representation import ernie
22+
from models.model_check import check_cuda
2223
import utils
2324

2425
# yapf: disable
@@ -384,4 +385,5 @@ def main(args):
384385

385386
if __name__ == "__main__":
386387
utils.print_arguments(args)
388+
check_cuda(args.use_cuda)
387389
main(args)

0 commit comments

Comments
 (0)