赛事(基于用户注册信息的关键词检测挑战赛"https://challenge.xfyun.cn/h5/detail?type=KDBURI&ch=2026dsDW2")由科大讯飞发起,中国信息协会联合主办。此次
AI
夏令营活动“https://ailc.datawhale.cn/hall/group/100000933/task/100000792”由Datawhale主办,个人理解此夏令营活动像是正式赛事的非正式预赛,用于推广赛事、帮忙感兴趣人员了解与深入探讨赛事、为正式赛事选拔人才。活动介绍如下。
赛事与赛题背景
• 技术领域:属于语音技术领域。
•
赛题核心:构建一个能根据用户注册语音自适应识别关键词的
AI 模型,解决零样本泛化、强噪声(-10
dB)及相似发音干扰等难点,推动语音唤醒从“厂家定制”走向“用户定制”。
(py31213) root@controller01:/opt/code_repos/keyword_detect/baseline# python Python 3.12.13 | packaged by Anaconda, Inc. | (main, Jul 9 2026, 14:38:16) [GCC 14.3.0] on linux Type "help", "copyright", "credits" or "license"for more information. >>> import torch >>> torch.cuda.is_available() /root/anaconda3/envs/py31213/lib/python3.12/site-packages/torch/cuda/__init__.py:188: UserWarning: CUDA initialization: The NVIDIA driver on your system is too old (found version 12040). Please update your GPU driver by downloading and installing a new version from the URL: http://www.nvidia.com/Download/index.aspx Alternatively, go to: https://pytorch.org to install a PyTorch version that has been compiled with your version of the CUDA driver. (Triggered internally at /__w/pytorch/pytorch/c10/cuda/CUDAFunctions.cpp:119.) return torch._C._cuda_getDeviceCount() > 0 False ...
由此可以知道:此服务器上安装的 PyTorch 2.13.0+cu130 是 CUDA
13.0 编译版,但此服务器上的 NVIDIA 驱动最高只支持 CUDA
12.4。PyTorch 在初始化时检测到驱动提供的 CUDA Driver
API 版本(12.4)低于它自身编译所需的版本(13.0),于是拒绝使用 GPU。