贪吃蛇---Java
StartGames.java文件
package com.xiao.snake; import javax.swing.*; public class StartGames { public static void main(String[]
StartGames.java文件
package com.xiao.snake; import javax.swing.*; public class StartGames { public static void main(String[]
tf.layers.Layer类是tf.layers里所有层都继承的基类,实现了通用的基础功能。用户只需要实例化它,就可以直接调用得到的实例。
__init__():先初始化父类。然后在成员变量中保存配置。
可以使用训练好的模型而无需从头开始重新训练,或在您打断的地方开始训练,以防止训练过程没有保存。
tf.keras.callbacks.ModelCheckpoint 允许在训练的过程中和结束时回调保存的模型。tf.keras.callbacks.ModelCheckpoint对象是回调对象,该回调对象可以在每一个周期保存模型
实例化方法:
tf.keras.callba
keras保存的h5、hdf5模型,在使用load_model和load_weights函数,出现AttributeError: ‘str’ object has no attribute 'decode’问题,之前也使用过这些模型和加载函数,但并没有出现这个错误,找了好久才找到解决方案。
貌似是由于h5py模块的版本问题,改用2.10版本
pip install&nbs
package com.xiao.parameter; public class Demo { public static void main(String[] args) {
死循环: for(;;){}
增强for循环 package com.xiao.demo; public class ForStrong { public static void&nb
源码:
package com.xiao.switchs; public class Demo { public static void main(String[] args) { &nbs
package com.xiao.scanner; import java.util.Scanner; public class Demo { public static void main(String[] args) {
当你在代码中加入文档注释时,运行Javadoc xxx.java就会生成文档,点击index.html就会在浏览器中看到
文档注释: /** * * @param name * @return */ /** * @author Xiaoxia
public class Demo1 { /* 实例变量:从属于对象;如果不自行初始化,这个类型的默认值 布尔值:默认值是false 除了基本类型,其余的默认值都是null &nb
#include "stm32f10x.h" #include "stdio.h" static GPIO_InitTypeDef GPIO_InitStructure; static NVIC_InitTypeDef NVIC_InitStructure;
void *memset(void *str, int c, size_t n) 复制字符 c(一个无符号字符)到参数 str 所指向的字符串的前 n 个字符。
原型:void *memset(void *str, int c, size_t n)
#include <string.h> main(){ char s[] = "ab-cd : ef;gh :i-jkl;mnop;qrs-tu: vwx-y;z"; char *delim
#include "stm32f10x.h" #include "stdio.h" static GPIO_InitTypeDef GPIO_InitStructure; static USART_InitTypeDef USART_InitStructure; #define&