ykocaman / id3-golang

ID3 Algorithm in GoLang

Home Page:http://ykocaman.github.io/id3-golang/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ID3 Algorithm in GoLang

Usage

`go build` && ./id3
  • don't forget to change file path for different file.

file: id3.go

Line 9:		dataset := Load("data/baseball.csv")

Example Console Output

	||-Outlook  =>  Overcast
	|			|->> Yes
	||-Outlook  =>  Sunny
	|			|-Humidity  =>  Normal
	|						|->> Yes
	|			|-Humidity  =>  High
	|						|->> No
	||-Outlook  =>  Rain
	|			|-Wind  =>  Weak
	|						|->> Yes
	|			|-Wind  =>  Strong
	|						|->> No

The ID3 Algorithm Details

About

ID3 Algorithm in GoLang

http://ykocaman.github.io/id3-golang/


Languages

Language:Go 100.0%