文章分类 -  Data Mining

摘要:算法描述:算法说明:该算法是概念空间挖掘最简单的算法,只考虑了正实例,不断做泛化,实际上求得了一个最特化边界算法实现:import java.io.BufferedReader;import java.io.FileReader;import java.io.IOException;public class FindS { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { int maxT... 阅读全文
posted @ 2014-04-06 00:05 Bleachzk 阅读(419) 评论(0) 推荐(0)
摘要:算法描述:Initialize G to the set of most-general hypotheses in H Initialize S to the set of most-specific hypotheses in H For each training example, d, do: If dis a positive example then: Remove from G any hypotheses that do not match d For each hypothesis sin S that does not match d Remove s from... 阅读全文
posted @ 2014-04-05 23:54 Bleachzk 阅读(781) 评论(0) 推荐(0)