上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 102 下一页
摘要: follow this video: https://www.youtube.com/watch?v=IHq1t7NxS8k paper: https://arxiv.org/pdf/1505.04597.pdf 介绍 一个2015年较老经典的模型,最初是为生物医学图像而开发的,后面在许多图像分割( 阅读全文
posted @ 2021-06-05 23:28 Rogn 阅读(643) 评论(0) 推荐(0) 编辑
摘要: follow this video: https://www.youtube.com/watch?v=4LktBHGCNfw paper: https://arxiv.org/pdf/1703.10593.pdf 只讲我关注到的,与Pix2Pix的区别之处 区别一:不需要成对匹配的数据 CycleG 阅读全文
posted @ 2021-05-31 23:36 Rogn 阅读(2004) 评论(0) 推荐(1) 编辑
摘要: follow this video: https://www.youtube.com/watch?v=SuddDSqGRzg&ab_channel=AladdinPersson paper: https://arxiv.org/pdf/1611.07004.pdf 只讲一下我发现的,与普通GAN的几 阅读全文
posted @ 2021-05-27 22:26 Rogn 阅读(916) 评论(0) 推荐(0) 编辑
摘要: follow this video: https://www.youtube.com/watch?v=IZtv9s_Wx9I paper: https://arxiv.org/pdf/1511.06434.pdf 与Simple GAN相比,loss部分是一样的,主要的不同在于结构,从全连接改成卷积 阅读全文
posted @ 2021-05-17 20:35 Rogn 阅读(439) 评论(0) 推荐(0) 编辑
摘要: follow this video: https://www.youtube.com/watch?v=OljTVUVzPpM paper: https://papers.nips.cc/paper/2014/file/5ca3e9b122f61f8f06494c97b1afccf3-Paper.pd 阅读全文
posted @ 2021-05-15 23:12 Rogn 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 第一次打leetcode比赛,扑街... 第一题:LCP 28. 采购方案 解决方法:排序;对于每个元素,二分查找target-nums[i] class Solution { public: int purchasePlans(vector<int>& nums, int target) { in 阅读全文
posted @ 2021-04-07 15:43 Rogn 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Spring Boot 和 Spring Cloud 已成为当前最流行的微服务框架。本文通过样例演示如何搭建并运行一个简单的 Spring Boot 项目。 在开发之前,首先确认我们的电脑上已经有以下环境: Java azul-16 maven 3.6.3 IntelliJ IDEA 2020.3 阅读全文
posted @ 2021-04-05 14:56 Rogn 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 环境:Mac M1,SpringBoot+Maven+IDEA 由于是arm架构的芯片,安装软件时需要谨慎一点,不然随时采坑。 JDK下载安装 JDK 推荐使用 zulu jdk,这个是适配 Arm 架构的 jdk,下载链接:下载地址根据需求选择 .dmg 格式的 jdk 下载,然后直接安装就好了, 阅读全文
posted @ 2021-04-05 14:03 Rogn 阅读(602) 评论(0) 推荐(0) 编辑
摘要: 当我使用idea编写一个最简单的Hello World演示程序。环境是Macbook air M1 chip 上的 Azul Zulu Comminity 16 aarch64。 貌似这个idea版本 IntelliJ IDEA 2020.3.1 (Ultimate Edition)Build #I 阅读全文
posted @ 2021-04-01 17:07 Rogn 阅读(7939) 评论(0) 推荐(0) 编辑
摘要: dp,直接递推和记忆化搜索 记忆化搜索 leetcode 1553 吃掉N个橘子的最少天数 思路:除2或除3总比减一划算,所以先减掉余数再除。由于N很大,需要记忆化搜索;由于N很大,不能用数组,可以用unordered_map class Solution { public: // vector<i 阅读全文
posted @ 2021-03-25 19:17 Rogn 阅读(55) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 102 下一页