摘要:
Ubuntu 22.04 Server 机器学习环境安装——保姆级教程 1. 安装操作系统 https://ubuntu.com/download/server 下载,写盘重启,最好备整张固态 一路默认,连接主wifi,由于我是双系统不要覆盖已有系统盘 直到 [] Set up this disk 阅读全文
摘要:
import os import torch import torch.nn as nn import torch._inductor.pattern_matcher as pm from torch._higher_order_ops.auto_functionalize import auto_ 阅读全文
摘要:
#### 1. 斐波那契数列的第n项 ```python def Fibonacci(self, n): if n==0: return 0 if n==1: return 1 a, b, c = 0, 1, -1 for i in range(2, n + 1): c = a + b a = b 阅读全文