-
大小: 35.29MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-08-08
- 语言: Python
- 标签:
资源简介
Tensorflow仿AlphaGo框架实现的AI围棋程序
代码片段和文件信息
#include
#include
#include
#include “util.hpp“
static Pyobject* get_liberty(Pyobject* self Pyobject* args)
{
const char *str;
int board_mtx[19][19];
if (!PyArg_ParseTuple(args “s“ &str))
return NULL;
str2mtx(str (int*)board_mtx);
int liberty_feature[16][19][19];
memset(liberty_feature 0 16*19*19*sizeof(int));
get_liberty_feature(board_mtx liberty_feature);
// for (int i = 0; i< 8; i++)
// {
// std::cout<< “white liberty “ << i+1 << std::endl;
// print_mtx((int*)(liberty_feature+8+i));
// }
char ret_str[16*361*2+1];
mtx2str(ret_str (int*)liberty_feature 16*19*19);
return Py_BuildValue(“s“ ret_str);
}
static PyMethodDef GofeatMethods[] = {
{“get_liberty“ get_liberty METH_VARARGS
“Test by random function“}
{NULL NULL 0 NULL}
};
static struct PyModuleDef gofeatmodule = {
PyModuleDef_HEAD_INIT
“gofeat“ /* name of module */
NULL /* module documentation may be NULL */
-1 /* size of per-interpreter state of the module
or -1 if the module keeps state in global variables. */
GofeatMethods
};
PyMODINIT_FUNC
PyInit_gofeat(void)
{
return PyModule_Create(&gofeatmodule);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-18 03:39 JoshieGo-master\
文件 1281 2019-03-18 03:39 JoshieGo-master\.gitignore
文件 1562 2019-03-18 03:39 JoshieGo-master\README.md
目录 0 2019-03-18 03:39 JoshieGo-master\clib\
文件 1343 2019-03-18 03:39 JoshieGo-master\clib\gofeat.cpp
文件 347 2019-03-18 03:39 JoshieGo-master\clib\setup.py
文件 2312 2019-03-18 03:39 JoshieGo-master\clib\test.py
文件 2945 2019-03-18 03:39 JoshieGo-master\clib\util.hpp
目录 0 2019-03-18 03:39 JoshieGo-master\src\
文件 7089 2019-03-18 03:39 JoshieGo-master\src\MCTS.py
文件 4514 2019-03-18 03:39 JoshieGo-master\src\SGFparser.py
文件 9805 2019-03-18 03:39 JoshieGo-master\src\game.py
文件 2233 2019-03-18 03:39 JoshieGo-master\src\input.py
文件 3765 2019-03-18 03:39 JoshieGo-master\src\play.py
文件 11598 2019-03-18 03:39 JoshieGo-master\src\policy_net.py
文件 11804 2019-03-18 03:39 JoshieGo-master\src\value_net.py
目录 0 2019-03-18 03:39 JoshieGo-master\trained_models\
文件 19835924 2019-03-18 03:39 JoshieGo-master\trained_models\policy.data-00000-of-00001
文件 6965 2019-03-18 03:39 JoshieGo-master\trained_models\policy.index
文件 1402082 2019-03-18 03:39 JoshieGo-master\trained_models\policy.me
文件 19828012 2019-03-18 03:39 JoshieGo-master\trained_models\value.data-00000-of-00001
文件 7410 2019-03-18 03:39 JoshieGo-master\trained_models\value.index
文件 1585110 2019-03-18 03:39 JoshieGo-master\trained_models\value.me
相关资源
- Python-一个非常简单的BiLSTMCRF模型用于
- Python-我是小诗姬全唐诗作为训练数据
- Python-用于物体跟踪的全卷积连体网络
- Python-数学建模竞赛中所使用的相关算
- Python-MonoDepthPyTorchPyTorch无监督单目深
- Python-用Tensorflowjs实现的可回收非可回
- Python-利用TensorFlow中的深度学习进行图
- Python-TensorFlow快速入门与实战课件与参
- Python-FCN完全卷积网络中最简单最容易
- Python-匈牙利算法卡尔曼滤波器多目标
- Python-mathAI一个拍照做题程序输入一张
- Python-Tensorflow实现SpatialAsDeepSpatialCNN
- Python-图像分类目标检测姿态估计分割
- Python-用python3opencv3做的中国车牌识别
- Python-各种对抗神经网络GAN大合集
- Python-Intel开源增强学习框架Coach
- Python-CENet用于2D医学图像分割的上下文
- Python-基于深度神经网络和蒙特卡罗树
- Python-SPNLearningAffinityviaSpatialPropagatio
- Python-效果超赞的图片自动增强GANs非成
- Python-VoiceactivitydetectionVAD语音端点检测
- Python-TensorFlow实现的人脸性别年龄识别
- Python-waifu2x利用卷积神经网络放大图片
- Python-TheElementsofStatisticalLearningESL的中
- Python-基于Tensorflow和Keras实现端到端的
- Python-MuseGAN用于乐曲生成的AI
- Python-简单快速实时可定制的机器学习
- Python-PySceneDetect基于PythonOpenCV实现的视
- Python-输入输出隐马尔可夫模型IOHMM的
- Python-基于OpenCVKerasTensorFlow实现深度换
评论
共有 条评论