- 博客(3)
- 收藏
- 关注
原创 【论文笔记】Ensemble Augmented-Shot Y-shaped Learning
EASY – Ensemble Augmented-Shot Y-shaped Learning: State-Of-The-Art Few-Shot Classification with Simple Ingredients 论文笔记
2022-09-16 16:42:17 1838 2
原创 【leetcode刷题笔记】
206.反转链表难度:简单我写的:(妖魔化双指针,做的时候画图就好)class Solution {public: ListNode* temp; ListNode* reverseList(ListNode* head) { if(!head || !head->next) return head; ListNode* now = head -> next; ListNode* last = head; w
2022-02-26 18:21:30 571
原创 python学习-reshape()函数理解
文章目录前言一、reshape()1.reshape(m,n)2.reshape(m,n,p)3.对多维数组reshape总结前言提示:这里可以添加本文要记录的大概内容:例如:随着人工智能的不断发展,机器学习这门技术也越来越重要,很多人都开启了学习机器学习,本文就介绍了机器学习的基础内容。提示:以下是本篇文章正文内容,下面案例可供参考一、reshape()1.reshape(m,n)代码如下(示例):A = [1,2,3,4,5,6,7,8,9,10,11,12]A.reshape(.
2020-10-26 21:25:12 12272 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人