摘要: 1.确定IB卡型号 lspci | grep -i 'infiniband\|mellanox' 2.安装NVIDIA MLNX_OFED驱动 https://network.nvidia.com/products/infiniband-drivers/linux/mlnx_ofed/ 在安装OFE 阅读全文
posted @ 2025-08-01 20:23 null147 阅读(108) 评论(0) 推荐(0)
摘要: leetcode 78. 子集 使用itertools.combinations实现 from itertools import combinations from typing import List class Solution: def subsets(self, nums: List[int 阅读全文
posted @ 2025-03-25 16:11 null147 阅读(19) 评论(0) 推荐(0)
摘要: 神经网络作业代码 BP神经网络 使用两种语言完成该作业 请自行选择参考 Wolfram Mathematica实现: Func[x_] = E^-x Sin[x]; xtrain = Subdivide[-5, 5, 1000]; ytrain = Func[xtrain]; p = Predict 阅读全文
posted @ 2020-03-17 13:26 null147 阅读(407) 评论(0) 推荐(0)