Skip to content

ykocaman/id3-golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages