⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 一个由Mike Gashler完成的机器学习方面的includes neural net, naive bayesian classifier, decision tree, KNN, a genet
💻 TXT
字号:
How to build:
	Windows:
		Run Visual Studio (VS6 or any later version)
		Open the project file "src\Waffles\Waffles.dsw"
		Set "Waffles" as the startup project
		Build

	Linux:
		cd src
		make

	OSX:
		Download the latest source for zlib, libpng and sdl from
		the following web sites:
		http://www.zlib.net/
		http://www.libpng.org/pub/png/libpng.html
		http://www.libsdl.org/index.php

		make the zlib package with the following commands:
		./configure --shared
		make
		sudo make install -- "This command will request the root password"

		make the libpng package with the following commands:
		./configure
		make
		sudo make install -- "This command will request the root password"

		make the sdl package with the following commands:
		./configure
		make
		sudo make install -- "This command will request the root password"

		Note: If you don't have root priviledges then the makefile will
		need to be modified to find the required lib files.

		cd Waffles/src
		make

Notes:
	Windows:
		Visual Studio 6:
			You may need to update your Platform SDK if you're
			still using the one that came with Visual Studio 6.
			You want the Feb 2003 version, which is the last
			update to support Visual Studio 6.
		Visual Studio 7:
			I didn't include a ".sln" project in the zip. Just
			open the VS6 ".dsw" project and it will automatically
			convert it to a ".sln" project.
		Visual Studio 8:
			Seems to work fine.

	Linux:
		To build optimized binaries instead of debug binaries
		use "make opt" instead of just "make".
		All the .dll and .lib files in the lib and bin
		folders are for Windows users who expect everything
		to "just work". You can delete those files because
		you don't need them. You can also delete the whole
		SDL folder because it contains header files that you
		already have in /usr/include/sdl.
		You will need the following packages:
			make
			gcc
			libc6-dev
			libsdl1.2-dev
			libpng3-dev
			libgpmg1-dev

	OSX:
		Testing is somewhat weak on OSX, because I don't have a
		Mac. Sorry. Good luck.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -