1
2
3
4
5
6
7
8
9
10
11
12
13
14
title: Linux系统上常用软件集锦
date: 2020-07-20 00:00:00
updated: 2022-01-05 00:00:00
tags: [Linux,四大组件,Activity]
type: [Linux,四大组件,Activity]
comments: Activity的生命周期完全解析
description: Activity的生命周期完全解析
keywords: Activity的生命周期完全解析
top_img:
mathjax:
katex:
aside:
aplayer:
highlight_shrink:

[TOC]

文章参考:https://mtyjkh.blog.csdn.net/article/details/120222803

文章参考:https://mtyjkh.blog.csdn.net/article/details/120222803

概述

2. 导入数据

1
2
3
4
5
import tensorflow as tf
from tensorflow.keras import datasets, layers, models
import matplotlib.pyplot as plt

(train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data()