[3853] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3853] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 | using System;
|
---|
[4068] | 22 | using System.IO;
|
---|
[3853] | 23 | using System.Windows.Forms;
|
---|
| 24 | using HeuristicLab.MainForm;
|
---|
| 25 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[9363] | 26 | using LibSVM;
|
---|
[3853] | 27 |
|
---|
[5694] | 28 | namespace HeuristicLab.Algorithms.DataAnalysis.Views {
|
---|
[5975] | 29 | [View("SVM Model")]
|
---|
[3853] | 30 | [Content(typeof(SupportVectorMachineModel), true)]
|
---|
| 31 | public partial class SupportVectorMachineModelView : AsynchronousContentView {
|
---|
| 32 |
|
---|
| 33 | public new SupportVectorMachineModel Content {
|
---|
| 34 | get { return (SupportVectorMachineModel)base.Content; }
|
---|
[3904] | 35 | set { base.Content = value; }
|
---|
[3853] | 36 | }
|
---|
| 37 |
|
---|
| 38 | public SupportVectorMachineModelView()
|
---|
| 39 | : base() {
|
---|
| 40 | InitializeComponent();
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[3855] | 43 | protected override void OnContentChanged() {
|
---|
| 44 | base.OnContentChanged();
|
---|
| 45 | if (Content == null)
|
---|
| 46 | textBox.Text = string.Empty;
|
---|
| 47 | else
|
---|
| 48 | UpdateTextBox();
|
---|
| 49 | }
|
---|
[3853] | 50 |
|
---|
| 51 | protected override void RegisterContentEvents() {
|
---|
| 52 | base.RegisterContentEvents();
|
---|
| 53 | Content.Changed += new EventHandler(Content_Changed);
|
---|
| 54 | }
|
---|
| 55 | protected override void DeregisterContentEvents() {
|
---|
| 56 | base.DeregisterContentEvents();
|
---|
| 57 | Content.Changed -= new EventHandler(Content_Changed);
|
---|
| 58 | }
|
---|
[3855] | 59 | private void Content_Changed(object sender, EventArgs e) {
|
---|
| 60 | UpdateTextBox();
|
---|
| 61 | }
|
---|
[3853] | 62 |
|
---|
[3855] | 63 | private void UpdateTextBox() {
|
---|
[3853] | 64 | using (MemoryStream s = new MemoryStream()) {
|
---|
[5694] | 65 | StreamWriter writer = new StreamWriter(s);
|
---|
| 66 | writer.WriteLine("RangeTransform:");
|
---|
| 67 | writer.Flush();
|
---|
| 68 | using (MemoryStream memStream = new MemoryStream()) {
|
---|
[9363] | 69 | RangeTransform.Write(memStream, Content.RangeTransform);
|
---|
[5694] | 70 | memStream.Seek(0, SeekOrigin.Begin);
|
---|
| 71 | memStream.WriteTo(s);
|
---|
| 72 | }
|
---|
| 73 | writer.WriteLine("Model:");
|
---|
| 74 | writer.Flush();
|
---|
| 75 | using (MemoryStream memStream = new MemoryStream()) {
|
---|
[9363] | 76 | svm.svm_save_model(new StreamWriter(memStream), Content.Model);
|
---|
[5694] | 77 | memStream.Seek(0, SeekOrigin.Begin);
|
---|
| 78 | memStream.WriteTo(s);
|
---|
| 79 | }
|
---|
| 80 | s.Flush();
|
---|
[5696] | 81 | s.Seek(0, SeekOrigin.Begin);
|
---|
[5694] | 82 |
|
---|
[3853] | 83 | StreamReader reader = new StreamReader(s);
|
---|
| 84 | textBox.Text = reader.ReadToEnd();
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 | }
|
---|