Lovely Buggies

Miracles happen outside the comfort zone.

工作流笔记(七)

云工作流的调度算法

论文题目汇总 论文题目 Cost Minimized PSO based Workflow Scheduling Plan for Cloud Computing Scheduling Using Improved Genetic Algorithm in Cloud Computin...

健壮性

深度学习笔记(十八)

Deep learning has been widely applied to various computer vision tasks with excellent performance. Prior to the realization of the adversarial example phenomenon by Biggio et al., Szegedy et.al, mo...

工作流笔记(六)

工作流中事务处理

论文题目汇总 论文题目 Multi-client Transactions in Distributed Publish/Subscribe Systems XCFG Based Data Flow Analysis of Business Processes ...

自动导出项目目录

在写我们Make-Money项目设计报告的过程中,需要项目目录。手动一个个打太慢了,截图太丑了。在同学的推荐下,我找到了tree这个好工具,来帮我高效地获取项目目录。让我们来了解一下tree吧! Tree命令简介 tree是一种递归目录列表命令,产生一个深度缩进列表文件,这是彩色的ALA dircolors如果ls_colors设置环境变量和输出是TTY。树已经被移植和报道以下操作系统下...

利用OpenGL设计多玩家贪吃蛇游戏

任务介绍 为贪吃蛇🐍游戏添加多人游戏功能:多个玩家👯‍♂️可以分别控制贪吃蛇在游戏区域里驰骋,避免碰到自己、同类或障碍物,尽可能地吃更多的食物🍅以生长! 开发环境 OpenGL3 GLFW GLAD C++ 环境的搭建主要是参考了 https://learnopengl.com/,可参考我之前的博客。 功能介绍 必须连接到服务器才能开始游戏...

CNN可视化

深度学习笔记(十七)

Introduction One of the most debated topics in deep learning is how to interpret and understand a trained model – particularly in the context of high risk industries like healthcare. The term “bla...

Image Caption

深度学习笔记(十六)

The goal of image captioning is to convert a given input image into a natural language description. In this tutorial, we only introduce you with translation from image to sentence. We would also ...

Training Issues

深度学习笔记(十五)

In this part, we would spend time revising common skills used in training model. In short version, easy but useful. In long version, we would introduce content in Outline step by step. We mainly...

Data Mining -- RNN


利用OpenGL设计贪吃蛇游戏

游戏简介 🐍先生十个贪婪的吃货。生活在丛林中的他妄图喝光所有的果汁来让自己生长。但是”人心不足蛇吞象”,他往往会误食自己或撞上石头。游戏中,玩家控制贪吃蛇在游戏区域里驰骋,避免碰到自己或障碍物,尽可能地吃更多的食物以生长! 游戏玩法: WASD控制蛇的移动 游戏开始,每隔一定时间会在地图空闲位置刷新一个食物,蛇触碰到食物后食物消失,蛇会增加一个单位的长度 当蛇触碰到自己或者...