⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftesthmm.dfm

📁 delphi 的hmm 程序
💻 DFM
字号:
object Form1: TForm1
  Left = 260
  Top = 107
  Width = 532
  Height = 413
  Caption = 'HMM Forward, Backward, Viterbi algorithms'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 8
    Top = 72
    Width = 44
    Height = 13
    Caption = 'Forward: '
  end
  object Label2: TLabel
    Left = 8
    Top = 96
    Width = 51
    Height = 13
    Caption = 'Backward:'
  end
  object Label3: TLabel
    Left = 8
    Top = 120
    Width = 68
    Height = 13
    Caption = 'Viterbi States: '
  end
  object Label4: TLabel
    Left = 16
    Top = 8
    Width = 322
    Height = 13
    Caption = 
      'Nikolai V. Shokhirev - Code for the tutorial on hidden Markov mo' +
      'dels'
  end
  object Label5: TLabel
    Left = 8
    Top = 144
    Width = 77
    Height = 13
    Caption = 'Posterior States:'
  end
  object Button1: TButton
    Left = 8
    Top = 32
    Width = 75
    Height = 25
    Caption = 'Run Test 1'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Memo1: TMemo
    Left = 248
    Top = 32
    Width = 265
    Height = 345
    Lines.Strings = (
      'http://en.wikipedia.org/wiki/Viterbi_algorithm'
      ''
      'states = ('#39'Rainy'#39', '#39'Sunny'#39')  = {1, 2}'
      ''
      'observations = ('#39'walk'#39', '#39'shop'#39', '#39'clean'#39')  = {1, 2, 3}'
      'start_probability = {'#39'Rainy'#39': 0.6, '#39'Sunny'#39': 0.4}'
      ''
      'transition_probability = {'
      '   '#39'Rainy'#39' : {'#39'Rainy'#39': 0.7, '#39'Sunny'#39': 0.3},'
      '   '#39'Sunny'#39' : {'#39'Rainy'#39': 0.4, '#39'Sunny'#39': 0.6},'
      '   }'
      ''
      'emission_probability = {'
      '   '#39'Rainy'#39' : {'#39'walk'#39': 0.1, '#39'shop'#39': 0.4, '#39'clean'#39': 0.5},'
      '   '#39'Sunny'#39' : {'#39'walk'#39': 0.6, '#39'shop'#39': 0.3, '#39'clean'#39': 0.1},'
      '   }'
      ''
      'for observations = ('#39'walk'#39', '#39'shop'#39', '#39'clean'#39')'
      'Probability = '
      'States = {2, 1, 1} = ('#39'Sunny'#39', '#39'Rainy'#39', '#39'Rainy'#39') '
      ''
      ''
      ''
      'http://www.shokhirev.com/nikolai.html')
    TabOrder = 1
  end
  object Button2: TButton
    Left = 8
    Top = 168
    Width = 75
    Height = 25
    Caption = 'Run Test 2'
    TabOrder = 2
    OnClick = Button2Click
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -