~~~~
One day ladies will take their computers for walks in the park and tell each other, "My little computer said such a funny thing this morning"--Alan Turing
《神经网络与深度学习》第3章编程练习 《神经网络与深度学习》第3章编程练习
logistic_regression-exercise''' 生成数据集, 看明白即可无需填写代码 '+' 从高斯分布采样 (X, Y) ~ N(3, 6, 1, 1, 0). 'o' 从高斯分布采样 (X, Y) ~ N(6, 3, 1
2021-09-20 Qin Jiahe
MAMP无法打开Apache服务器 MAMP无法打开Apache服务器
最近装了一个MAMP打算学一下MySQL,结果打开发现Apache服务器不启动,折腾了一番后发现在D:\MAMP\logs下的日志文件apache_error.log里的报错: [Sat Jul 17 00:04:40 2021] [war
2021-07-17 Qin Jiahe
C++ Primer 11.2.3节编程练习 C++ Primer 11.2.3节编程练习
编写程序,读入string和int的序列,将每个string和int存入一个pair中,pair保存在一个vector中#include #include #include #include #include #include #inclu
2020-07-22
C++ Primer 11.2.1节编程练习 C++ Primer 11.2.1节编程练习
练习11.7 定义一个map,关键字是家庭的姓,值是一个vector,保存家中孩子(们)的名,编写代码,实现添加新的家庭以及向已有家庭中添加新的孩子#include #include #include #include #include #
2020-07-22
HTML速查列表 HTML速查列表
转自菜鸟教程 HTML基本文档<!DOCTYPE html> <html> <head> <title>文档标题</title> </head> <body> 可见文本... </body>
2020-05-16
C程序设计语言读书笔记2 C程序设计语言读书笔记2
练习1-12编写一个程序,以每行一个单词的形式打印其输出 #include<stdio.h> #define IN 1 #define OUT 0 int main() { int state, c; state
2020-04-04
1 / 3