[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;
|
---|
| 26 |
|
---|
[5694] | 27 | namespace HeuristicLab.Algorithms.DataAnalysis.Views {
|
---|
[5975] | 28 | [View("SVM Model")]
|
---|
[3853] | 29 | [Content(typeof(SupportVectorMachineModel), true)]
|
---|
| 30 | public partial class SupportVectorMachineModelView : AsynchronousContentView {
|
---|
| 31 |
|
---|
| 32 | public new SupportVectorMachineModel Content {
|
---|
| 33 | get { return (SupportVectorMachineModel)base.Content; }
|
---|
[3904] | 34 | set { base.Content = value; }
|
---|
[3853] | 35 | }
|
---|
| 36 |
|
---|
| 37 | public SupportVectorMachineModelView()
|
---|
| 38 | : base() {
|
---|
| 39 | InitializeComponent();
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[3855] | 42 | protected override void OnContentChanged() {
|
---|
| 43 | base.OnContentChanged();
|
---|
| 44 | if (Content == null)
|
---|
| 45 | textBox.Text = string.Empty;
|
---|
| 46 | else
|
---|
| 47 | UpdateTextBox();
|
---|
| 48 | }
|
---|
[3853] | 49 |
|
---|
| 50 | protected override void RegisterContentEvents() {
|
---|
| 51 | base.RegisterContentEvents();
|
---|
| 52 | Content.Changed += new EventHandler(Content_Changed);
|
---|
| 53 | }
|
---|
| 54 | protected override void DeregisterContentEvents() {
|
---|
| 55 | base.DeregisterContentEvents();
|
---|
| 56 | Content.Changed -= new EventHandler(Content_Changed);
|
---|
| 57 | }
|
---|
[3855] | 58 | private void Content_Changed(object sender, EventArgs e) {
|
---|
| 59 | UpdateTextBox();
|
---|
| 60 | }
|
---|
[3853] | 61 |
|
---|
[3855] | 62 | private void UpdateTextBox() {
|
---|
[3853] | 63 | using (MemoryStream s = new MemoryStream()) {
|
---|
[5694] | 64 | StreamWriter writer = new StreamWriter(s);
|
---|
| 65 | writer.WriteLine("RangeTransform:");
|
---|
| 66 | writer.Flush();
|
---|
| 67 | using (MemoryStream memStream = new MemoryStream()) {
|
---|
| 68 | SVM.RangeTransform.Write(memStream, Content.RangeTransform);
|
---|
| 69 | memStream.Seek(0, SeekOrigin.Begin);
|
---|
| 70 | memStream.WriteTo(s);
|
---|
| 71 | }
|
---|
| 72 | writer.WriteLine("Model:");
|
---|
| 73 | writer.Flush();
|
---|
| 74 | using (MemoryStream memStream = new MemoryStream()) {
|
---|
| 75 | SVM.Model.Write(memStream, Content.Model);
|
---|
| 76 | memStream.Seek(0, SeekOrigin.Begin);
|
---|
| 77 | memStream.WriteTo(s);
|
---|
| 78 | }
|
---|
| 79 | s.Flush();
|
---|
[5696] | 80 | s.Seek(0, SeekOrigin.Begin);
|
---|
[5694] | 81 |
|
---|
[3853] | 82 | StreamReader reader = new StreamReader(s);
|
---|
| 83 | textBox.Text = reader.ReadToEnd();
|
---|
| 84 | }
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 | }
|
---|