CHANGELOG-3-1-4
上传用户:wellsales
上传日期:2021-03-11
资源大小:10607k
文件大小:13k
源码类别:

工具条

开发平台:

Others

  1. Working file: weka/attributeSelection/AttributeSelection.java
  2. ----------------------------
  3. revision 1.10
  4. date: 1999/08/23 02:27:17;  author: mhall;  state: Exp;  lines: +171 -117
  5. Added facility to accumulate statistics over multiple feature selection
  6. runs.
  7. =============================================================================
  8. Working file: weka/classifiers/AdaBoostM1.java
  9. ----------------------------
  10. revision 1.10
  11. date: 1999/08/25 02:07:23;  author: trigg;  state: Exp;  lines: +50 -3
  12. - Made AdaBoost Sourcable.
  13. =============================================================================
  14. Working file: weka/classifiers/CostMatrix.java
  15. Working file: weka/classifiers/CostSensitiveClassifier.java
  16. Working file: weka/core/Instances.java
  17. Working file: weka/core/Matrix.java
  18. Working file: weka/gui/AttributeSelectionPanel.java
  19. Working file: weka/gui/CostMatrixEditor.java
  20. Working file: weka/gui/GenericArrayEditor.java
  21. Working file: weka/gui/GenericObjectEditor.java
  22. Working file: weka/gui/experiment/SetupPanel.java
  23. Working file: weka/gui/explorer/AssociationsPanel.java
  24. Working file: weka/gui/explorer/AttributeSelectionPanel.java
  25. Working file: weka/gui/explorer/ClassifierPanel.java
  26. Working file: weka/gui/explorer/PreprocessPanel.java
  27. ----------------------------
  28. date: 1999/08/26 23:31:33;  author: trigg;  state: Exp;
  29. - Reworked cost sensitive classification and evaluation. Cost matrices are
  30.   now handled as a class CostMatrix. Code related to cost matrices has been
  31.   moved from Instances into CostMatrix. Evaluation has been updated to use
  32.   CostMatrix (and the old cost file format is still read). Created a meta
  33.   classifier for performing cost-sensitve classification using either
  34.   training instance reweighting or minimum expected cost prediction. Made a
  35.   simple editor for cost matrices and adjusted other GUI files to support
  36.   this.
  37. - Also made some small GUI layout changes.
  38. =============================================================================
  39. Working file: weka/classifiers/Evaluation.java
  40. ----------------------------
  41. revision 1.15
  42. date: 1999/09/08 01:53:51;  author: mhall;  state: Exp;  lines: +14 -8
  43. Changed evaluateModelOnce so it returns the prediction for the instance,
  44. ----------------------------
  45. revision 1.14
  46. date: 1999/08/29 23:53:30;  author: trigg;  state: Exp;  lines: +4 -2
  47. - Changed CorrectlyClassifiedWithCost to reflect the benefit of correctly
  48.   classifying a potentially high-cost instance.
  49. ----------------------------
  50. revision 1.13
  51. date: 1999/08/26 23:31:33;  author: trigg;  state: Exp;  lines: +52 -34
  52. - Reworked cost sensitive classification and evaluation. Cost matrices are
  53.   now handled as a class CostMatrix. Code related to cost matrices has been
  54.   moved from Instances into CostMatrix. Evaluation has been updated to use
  55.   CostMatrix (and the old cost file format is still read). Created a meta
  56.   classifier for performing cost-sensitve classification using either
  57.   training instance reweighting or minimum expected cost prediction. Made a
  58.   simple editor for cost matrices and adjusted other GUI files to support
  59.   this.
  60. - Also made some small GUI layout changes.
  61. ----------------------------
  62. revision 1.9.2.1
  63. date: 1999/08/27 05:03:15;  author: eibe;  state: Exp;  lines: +27 -23
  64. Fixed bug in computing incorrectly classified instances with costs.
  65. =============================================================================
  66. Working file: weka/classifiers/FilteredClassifier.java
  67. ----------------------------
  68. revision 1.2
  69. date: 1999/08/26 23:25:22;  author: trigg;  state: Exp;  lines: +3 -5
  70. - Minor doc changes.
  71. =============================================================================
  72. Working file: weka/classifiers/HyperPipes.java
  73. ----------------------------
  74. revision 1.3
  75. date: 1999/09/08 04:38:28;  author: trigg;  state: Exp;  lines: +270 -270
  76. - Got rid of ugly extra ^M's in the source.
  77. ----------------------------
  78. revision 1.2
  79. date: 1999/08/25 04:07:04;  author: trigg;  state: Exp;  lines: +2 -2
  80. - Altered copyright notice according to Intelligenesis guidelines :-)
  81. ----------------------------
  82. revision 1.1
  83. date: 1999/08/25 00:16:02;  author: trigg;  state: Exp;
  84. - First version of the HyperPipes classifier.
  85. =============================================================================
  86. Working file: weka/classifiers/IBk.java
  87. ----------------------------
  88. revision 1.13
  89. date: 1999/09/01 03:19:57;  author: mhall;  state: Exp;  lines: +6 -1
  90. Added a call to crossValidate in the toString method. This ensures that
  91. the correct value for K will be displayed when -X has been specified.
  92. =============================================================================
  93. Working file: weka/classifiers/j48/ClassifierTree.java
  94. ----------------------------
  95. revision 1.7
  96. date: 1999/08/26 23:19:27;  author: trigg;  state: Exp;  lines: +30 -3
  97. - Updated source output method to prevent method naming clashes (since
  98.   hashcodes aren't necessarily unique).
  99. =============================================================================
  100. Working file: weka/clusterers/ClusterEvaluation.java
  101. Working file: weka/clusterers/Cobweb.java
  102. Working file: weka/clusterers/EM.java
  103. Working file: weka/gui/explorer/ClustererPanel.java
  104. ----------------------------
  105. date: 1999/09/08 01:56:18;  author: mhall;  state: Exp;  lines: +21 -6
  106. Changed so that cluster assignments are mapped properly when a clusterer has
  107. empty clusters.
  108. ----------------------------
  109. date: 1999/08/30 05:04:35;  author: mhall;  state: Exp;  lines: +40 -3
  110. Changed so unused clusters are not displayed in the output.
  111. ----------------------------
  112. date: 1999/08/27 04:27:09;  author: mhall;  state: Exp;  lines: +152 -4
  113. Incorperated ClustererPanel into the Explorer. Touched up ClusterEvaluation,
  114. EM and Cobweb to allow integration with the gui.
  115. =============================================================================
  116. Working file: weka/core/Utils.java
  117. ----------------------------
  118. revision 1.14
  119. date: 1999/09/16 21:53:13;  author: trigg;  state: Exp;  lines: +61 -18
  120. - New mega-funky quoting mechanism. Better in all respects.
  121. =============================================================================
  122. Working file: weka/gui/GenericObjectEditor.java
  123. ----------------------------
  124. revision 1.14
  125. date: 1999/09/09 02:23:35;  author: mhall;  state: Exp;  lines: +4 -5
  126. Fixed cancel button. Now works under NT using java 1.2.
  127. ----------------------------
  128. revision 1.13
  129. date: 1999/09/03 04:28:17;  author: mhall;  state: Exp;  lines: +54 -1
  130. Added ok and cancel buttons.
  131. ----------------------------
  132. revision 1.11
  133. date: 1999/08/25 05:02:46;  author: trigg;  state: Exp;  lines: +3 -3
  134. - Better handling when classes aren't found.
  135. =============================================================================
  136. Working file: weka/gui/ResultHistoryPanel.java
  137. ----------------------------
  138. revision 1.6
  139. date: 1999/09/16 22:11:14;  author: mhall;  state: Exp;  lines: +32 -12
  140. added a getSelectionModel method so that clients can add themselves as
  141. listeners for list selection events. This allows a response to be made
  142. when a list selection changes regardless of how the selection was made
  143. (mouse or keyboard).
  144. ----------------------------
  145. revision 1.5
  146. date: 1999/09/16 05:43:22;  author: mhall;  state: Exp;  lines: +28 -15
  147. Changed so that generic objects rather than just Visualize objects can
  148. be associated with list entries.
  149. ----------------------------
  150. revision 1.4
  151. date: 1999/09/16 03:12:44;  author: mhall;  state: Exp;  lines: +32 -1
  152. Added the ability to associate a visualization object with a list entry
  153. =============================================================================
  154. Working file: weka/gui/explorer/AssociationsPanel.java
  155. ----------------------------
  156. revision 1.5
  157. date: 1999/09/02 05:21:44;  author: trigg;  state: Exp;  lines: +7 -3
  158. - Added options to control output for classifiers, and not output the attribute
  159.   list for more than 100 attributes.
  160. =============================================================================
  161. Working file: weka/gui/explorer/AttributeSelectionPanel.java
  162. ----------------------------
  163. revision 1.5
  164. date: 1999/09/02 05:21:44;  author: trigg;  state: Exp;  lines: +7 -3
  165. - Added options to control output for classifiers, and not output the attribute
  166.   list for more than 100 attributes.
  167. ----------------------------
  168. revision 1.3
  169. date: 1999/08/23 02:27:58;  author: mhall;  state: Exp;  lines: +22 -5
  170. Changed to give progress indication during x-val.
  171. =============================================================================
  172. Working file: weka/gui/explorer/ClassifierPanel.java
  173. ----------------------------
  174. revision 1.13
  175. date: 1999/09/16 22:12:30;  author: mhall;  state: Exp;  lines: +17 -9
  176. Changed so that visualize button status and classifier output responds to
  177. both mouse and keyboard in the results list.
  178. ----------------------------
  179. revision 1.12
  180. date: 1999/09/16 05:44:24;  author: mhall;  state: Exp;  lines: +19 -46
  181. Fixed Visualize button so that its enabled status is linked to the
  182. results list.
  183. ----------------------------
  184. revision 1.11
  185. date: 1999/09/16 03:34:43;  author: trigg;  state: Exp;  lines: +2 -2
  186. - Fixed bug -- selected index may actually be 0 :-)
  187. ----------------------------
  188. revision 1.10
  189. date: 1999/09/16 03:14:48;  author: mhall;  state: Exp;  lines: +212 -64
  190. Moved the output/visualize options to a popup window. Individual predictions from the results list can now be visualized.
  191. ----------------------------
  192. revision 1.9
  193. date: 1999/09/08 01:58:18;  author: mhall;  state: Exp;  lines: +86 -6
  194. Added visualize button.
  195. ----------------------------
  196. revision 1.8
  197. date: 1999/09/07 04:19:56;  author: trigg;  state: Exp;  lines: +10 -5
  198. - Fixed bug when setting instances with no attributes
  199. ----------------------------
  200. revision 1.7
  201. date: 1999/09/02 05:21:44;  author: trigg;  state: Exp;  lines: +89 -15
  202. - Added options to control output for classifiers, and not output the attribute
  203.   list for more than 100 attributes.
  204. =============================================================================
  205. Working file: weka/gui/explorer/ClustererPanel.java
  206. ----------------------------
  207. revision 1.6
  208. date: 1999/09/16 22:12:49;  author: mhall;  state: Exp;  lines: +14 -16
  209. Changed so that visualize button status and clusterer output responds to
  210. both mouse and keyboard in the results list.
  211. ----------------------------
  212. revision 1.5
  213. date: 1999/09/16 05:44:39;  author: mhall;  state: Exp;  lines: +19 -13
  214. Fixed Visualize button so that its enabled status is linked to the
  215. results list.
  216. ----------------------------
  217. revision 1.4
  218. date: 1999/09/16 03:15:39;  author: mhall;  state: Exp;  lines: +124 -29
  219. Moved the visualize button. Individual clustering results from the results list
  220. can now be visualized.
  221. ----------------------------
  222. revision 1.3
  223. date: 1999/09/08 01:58:18;  author: mhall;  state: Exp;  lines: +48 -1
  224. Added visualize button.
  225. =============================================================================
  226. Working file: weka/gui/explorer/Explorer.java
  227. ----------------------------
  228. revision 1.7
  229. date: 1999/09/16 04:01:43;  author: trigg;  state: Exp;  lines: +9 -2
  230. - Allow specifying an arff file from the command line
  231. ----------------------------
  232. revision 1.6
  233. date: 1999/09/08 01:58:57;  author: mhall;  state: Exp;  lines: +6 -4
  234. Incorperated the visualize panel.
  235. ----------------------------
  236. revision 1.5
  237. date: 1999/08/27 03:42:46;  author: mhall;  state: Exp;  lines: +5 -3
  238. Incorperated ClustererPanel into the Explorer. Touched up ClusterEvaluation,
  239. EM and Cobweb to allow integration with the gui.
  240. =============================================================================
  241. Working file: weka/gui/explorer/PreprocessPanel.java
  242. ----------------------------
  243. revision 1.7
  244. date: 1999/09/16 04:03:00;  author: trigg;  state: Exp;  lines: +96 -68
  245. - Rearranged IO threading to allow external objects to trigger
  246. file loading (eg, main method of Explorer).
  247. =============================================================================
  248. Working file: weka/gui/explorer/VisualizePanel.java
  249. ----------------------------
  250. revision 1.4
  251. date: 1999/09/19 22:26:26;  author: mhall;  state: Exp;  lines: +24 -2
  252. Added the classifiers prediction to the instance info popup window.
  253. ----------------------------
  254. revision 1.3
  255. date: 1999/09/16 03:53:51;  author: trigg;  state: Exp;  lines: +7 -7
  256. - Fixed bug in jittering -- used to tend values downward (now symmetric
  257. around the original value, by using gaussian jittering)
  258. ----------------------------
  259. revision 1.2
  260. date: 1999/09/16 03:16:52;  author: mhall;  state: Exp;  lines: +543 -90
  261. Added a jitter slider. Can now click on a point and recieve information about
  262. the corresponding instance(s) in a popup window.
  263. ----------------------------
  264. revision 1.1
  265. date: 1999/09/08 01:57:34;  author: mhall;  state: Exp;
  266. Initial import
  267. =============================================================================
  268. Working file: weka/gui/streams/FilterPanel.java
  269. ----------------------------
  270. revision 1.2
  271. date: 1999/09/13 03:09:48;  author: trigg;  state: dead;  lines: +1 -1
  272. partial code removed
  273. =============================================================================