Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15548


Ignore:
Timestamp:
12/19/17 15:09:04 (6 years ago)
Author:
mkommend
Message:

#2850: Changed name for tsnet to be more descriptive. Adapted StringConvertibleArrayView to automatically resize row headers.

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/TSNEAlgorithm.cs

    r15545 r15548  
    3838namespace HeuristicLab.Algorithms.DataAnalysis {
    3939  /// <summary>
    40   /// t-distributed stochastic neighbourhood embedding (tSNE) projects the data in a low dimensional
     40  /// t-Distributed Stochastic Neighbor Embedding (tSNE) projects the data in a low dimensional
    4141  /// space to allow visual cluster identification.
    4242  /// </summary>
    43   [Item("tSNE", "t-distributed stochastic neighbourhood embedding projects the data in a low " +
     43  [Item("t-Distributed Stochastic Neighbor Embedding (tSNE)", "t-Distributed Stochastic Neighbor Embedding projects the data in a low " +
    4444                "dimensional space to allow visual cluster identification. Implemented similar to: https://lvdmaaten.github.io/tsne/#implementations (Barnes-Hut t-SNE). Described in : https://lvdmaaten.github.io/publications/papers/JMLR_2014.pdf")]
    4545  [Creatable(CreatableAttribute.Categories.DataAnalysis, Priority = 100)]
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleArrayView.Designer.cs

    r14299 r15548  
    6565      // lengthTextBox
    6666      //
    67       this.lengthTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     67      this.lengthTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    6868            | System.Windows.Forms.AnchorStyles.Right)));
    6969      this.lengthTextBox.Location = new System.Drawing.Point(52, 0);
     
    7979      this.dataGridView.AllowUserToAddRows = false;
    8080      this.dataGridView.AllowUserToDeleteRows = false;
    81       this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    82             | System.Windows.Forms.AnchorStyles.Left) 
     81      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     82            | System.Windows.Forms.AnchorStyles.Left)
    8383            | System.Windows.Forms.AnchorStyles.Right)));
    8484      this.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
     
    8787      this.dataGridView.Location = new System.Drawing.Point(0, 26);
    8888      this.dataGridView.Name = "dataGridView";
     89      this.dataGridView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
    8990      this.dataGridView.Size = new System.Drawing.Size(424, 378);
    9091      this.dataGridView.TabIndex = 2;
Note: See TracChangeset for help on using the changeset viewer.