自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 C#程序设计题:九九乘法表

【代码】C#程序设计九九乘法表。

2023-05-08 13:29:06 312

原创 C#程序设计题:计算任意秒数对应的天、时、分和秒?

C# 涉及简单的算术运算符学习

2023-05-06 09:39:27 256 1

原创 [Python] MacOS 修改 pip 源为国内源

Python MacOS 修改 pip 源为国内源

2022-11-03 09:43:49 2564

原创 【lua】Table 数组反转

昨天突然被问到lua怎么进行数组反转,作为一个摸鱼选手怎么会知道呢?希望对更多摸鱼选手有帮助!

2022-10-25 13:43:18 1000

原创 【C#面向对象程序设计】1-1了解C#程序

了解C#程序1.1 C#程序结构using System; //引用命名空间namespace CSharp_01 //命名空间{ class YourClass //类 { } struct YourStruct //结构 { } interface IYourInterface //接口 { } delegate int YourDelegate(); //委托

2021-01-28 19:10:23 584

原创 C#程序设计题:水仙花数

C#程序设计题:水仙花数设计一个程序,输出所有的水仙花数。所谓水仙花数是一个三位整数,其各位数字的立方和等于该数本身。例如:153=111+555+333 static void Main(string[] args) { int sum = 0, num1, num2,num3; int num = int.Parse(Console.ReadLine()); num1 = num / 100;

2020-11-16 16:08:36 862

原创 keras 卷积网络识别CIFAR-10图像

import tensorflow as tfimport tensorflow.kerasfrom tensorflow.keras.datasets import cifar10import numpy as npfrom tensorflow.keras.utils import to_categoricalnp.random.seed(10)(x_img_train, y_label_train), \(x_img_test, y_label_test) = cifar10.load

2020-11-10 18:09:26 433 3

原创 fashion-mnist

import tensorflow as tfimport tensorflow.kerasfrom tensorflow.keras.datasets import fashion_mnistimport numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom tensorflow.keras.utils import to_categorical#np.random.seed(10)(train_images,

2020-11-10 17:59:44 151

原创 keras 建立MLP、RNN、LSTM模型进行IMDb情感分析

这是IMDB情感分析,我把三种模型三合一了,要仔细分清import tensorflow as tffrom tensorflow import kerasimport numpy as npimport pandas as pdfrom tensorflow.keras.utils import to_categoricalfrom tensorflow.keras.preprocessing import sequencefrom tensorflow.keras.models impor

2020-11-10 17:14:08 924

原创 keras多层感知器识别手写数字

一、进行数据预处理步骤1:导入所需模块import tensorflow as tfimport tensorflow.kerasimport numpy as npimport pandas as pdfrom tensorflow.keras.utils import to_categoricalnp.random.seed(10)步骤2:读取MNIST数据from tensorflow.keras.datasets import mnist(x_train_image, y_tr

2020-11-10 16:39:57 349

原创 Keras卷积神经网络识别手写数字

一、进行数据预处理步骤1:导入所需模块import tensorflow as tfimport tensorflow.kerasfrom tensorflow.keras.datasets import mnistimport numpy as npimport pandas as pdfrom tensorflow.keras.utils import to_categoricalnp.random.seed(10)步骤2:读取MNIST数据(x_train, y_train),

2020-11-10 15:39:57 343

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除