Skip to content

Commit

Permalink
Updated naming to better reflect target type
Browse files Browse the repository at this point in the history
  • Loading branch information
ncguilbeault committed Sep 3, 2024
1 parent 066d86e commit f2ee345
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
using OxyPlot.WindowsForms;
using MathNet.Numerics.LinearAlgebra;

[assembly: TypeVisualizer(typeof(GaussianObservationsClustersVisualizer), Target = typeof(GaussianObservationsStatistics))]
[assembly: TypeVisualizer(typeof(GaussianObservationsStatisticsClustersVisualizer), Target = typeof(GaussianObservationsStatistics))]

namespace Bonsai.ML.Visualizers
{
/// <summary>
/// Provides a type visualizer of <see cref="GaussianObservationsStatistics"/> to display how the observations
/// cluster with respect to the mean and covariance of each state of an HMM with gaussian observations model.
/// </summary>
public class GaussianObservationsClustersVisualizer : DialogTypeVisualizer
public class GaussianObservationsStatisticsClustersVisualizer : DialogTypeVisualizer
{
private PlotView view;
private PlotModel model;
Expand Down

0 comments on commit f2ee345

Please sign in to comment.