上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: T1 分解质因数 解题方法:暴力 //矩形相交问题 #include <bits/stdc++.h> using namespace std; bool sb(int n){ if(n == 2){ return 1; } if(!(n & 1)){ return 0; } for(int i = 阅读全文
posted @ 2020-02-28 19:07 LightAc 阅读(188) 评论(0) 推荐(0) 编辑
摘要: T1 一道模拟题 高精度算阶乘 #include <bits/stdc++.h> using namespace std; void f(int n){ if(n == 1){ cout << "1"; } else { int a[100000]; int e = 0, s = 0, p = 0; 阅读全文
posted @ 2020-02-27 22:12 LightAc 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 卷积神经网络 一、绪论 1.卷积神经网络的应用 无处不在的卷积神经网络 基本应用 分类 检索 检测 分割 人脸识别(face recognition) 人物表情识别 图像生成 图像风格转化 自动驾驶 2.传统神经网络vs卷积神经网络 深度学习三部曲 Step1: Neural Network(搭建神 阅读全文
posted @ 2020-02-05 20:56 LightAc 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 一、数学基础 Al数理基础:线性代数、概率统计、最优化、(信息论、微积分) 1.神经网络在“学”什么 2.矩阵线性变换 从线性变换的角度,矩阵相乘对原始向量同时施加方向变化和尺度变化 对于有些特殊的向量,矩阵的作用只有尺度的变化而没有方向变化 ->这类特殊的向量就是特征向量,尺度变化系数就是特诊值 阅读全文
posted @ 2020-02-04 17:50 LightAc 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 一、生物神经元与神经网络相关的部分 1.每个神经元都是一个多输入单输出的信息处理单元; 2.神经元具有空间整合和时间整合特性; 3.神经元输入分兴奋性输入和抑制性输入两种类型; 4.神经元具有阈值特性。 二、M-P神经元 三、为什么需要激活函数 从神经元角度: 神经元继续传递信息、产生新连接的概率( 阅读全文
posted @ 2020-02-03 16:29 LightAc 阅读(600) 评论(0) 推荐(0) 编辑
摘要: A. 签到题:思路为:所求答案 = 9 * (字符长度 - 1) + 最高位数 +(- 1)//通过判断语言确定是否需要再减个一 如果a****** > *******则需要加一反之不需要 #include <bits/stdc++.h> using namespace std; typedef l 阅读全文
posted @ 2019-12-14 23:47 LightAc 阅读(171) 评论(0) 推荐(0) 编辑
摘要: //实验四 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp3 { class Program { static int add(... 阅读全文
posted @ 2019-10-09 16:53 LightAc 阅读(188) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { class Program { enum MyEn { a = 101, b, c = 207, d, e, f, g 阅读全文
posted @ 2019-09-25 16:09 LightAc 阅读(311) 评论(0) 推荐(1) 编辑
摘要: #include <bits/stdc++.h> using namespace std; typedef long long ll; int v1[100001]; int v2[100001]; int s1[100001]; int s2[100001]; int main () { ios::sync_with_stdio(false); int n; cin >> n; for (int 阅读全文
posted @ 2019-08-31 09:48 LightAc 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 比赛网址: http://codeforces.com/contest/1196 Example Input 41 3 41 10 10010000000000000000 10000000000000000 1000000000000000023 34 45Output 4551500000000 阅读全文
posted @ 2019-07-25 20:10 LightAc 阅读(185) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
返回顶端