摘要: 参考:CS231n Assignment 1—准备工作 - 知乎 (zhihu.com) 在下载requirements之前需要关闭vpn,不然会出现错误!!! 每次启动前输入语句 activate cs231nD:cd D:\microsoft\spring1819_assignment1\ass 阅读全文
posted @ 2024-08-14 14:10 你也喜欢阿狸吗 阅读(14) 评论(0) 推荐(0)
摘要: 可视化部分样本,显示部分训练数据样本的图像 # Visualize some examples from the dataset. # We show a few examples of training images from each class. classes = ['plane', 'ca 阅读全文
posted @ 2024-08-14 14:09 你也喜欢阿狸吗 阅读(22) 评论(0) 推荐(0)
摘要: 牛客小白月赛93 A 生不逢7 1 def check(num): 2 return '7' in str(num) or num%7==0 3 4 def solve(): 5 n,a,k = LII() 6 d = a+1 7 for i in range(k): 8 if check(d): 9 print(' 阅读全文
posted @ 2024-05-11 19:50 你也喜欢阿狸吗 阅读(38) 评论(0) 推荐(0)
摘要: 题目: import os import sys import math import re from bisect import * from heapq import * input =lambda:sys.stdin.readline().rstrip('\r\n') def I(): ret 阅读全文
posted @ 2024-02-29 21:45 你也喜欢阿狸吗 阅读(59) 评论(0) 推荐(0)
摘要: 修补木桶 - HihoCoder 1362 - Virtual Judge (vjudge.net) #include<iostream> #include<algorithm> #include<cstdio> #include<cstring> using namespace std; #def 阅读全文
posted @ 2024-02-28 17:30 你也喜欢阿狸吗 阅读(21) 评论(0) 推荐(0)
摘要: A: 给一组数字,判断是否满足以下条件 1 #define _CRT_SECURE_NO_WARNINGS 2 #include<algorithm> 3 #include<iostream> 4 #include<cstring> 5 #include<cstdio> 6 #include<cma 阅读全文
posted @ 2024-02-28 17:28 你也喜欢阿狸吗 阅读(15) 评论(0) 推荐(0)
摘要: A: 把每七天内走的步数加起来输出 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 int n; 7 scanf("%d",&n); 8 while(n--){ 9 int sum=0; 10 for(int 阅读全文
posted @ 2023-08-10 19:30 你也喜欢阿狸吗 阅读(15) 评论(0) 推荐(0)