atwiki-logo
  • 新規作成
    • 新規ページ作成
    • 新規ページ作成(その他)
      • このページをコピーして新規ページ作成
      • このウィキ内の別ページをコピーして新規ページ作成
      • このページの子ページを作成
    • 新規ウィキ作成
  • 編集
    • ページ編集
    • ページ編集(簡易版)
    • ページ名変更
    • メニュー非表示でページ編集
    • ページの閲覧/編集権限変更
    • ページの編集モード変更
    • このページにファイルをアップロード
    • メニューを編集
    • 右メニューを編集
  • バージョン管理
    • 最新版変更点(差分)
    • 編集履歴(バックアップ)
    • アップロードファイル履歴
    • ページ操作履歴
  • ページ一覧
    • ページ一覧
    • このウィキのタグ一覧
    • このウィキのタグ(更新順)
    • このページの全コメント一覧
    • このウィキの全コメント一覧
    • おまかせページ移動
  • RSS
    • このウィキの更新情報RSS
    • このウィキ新着ページRSS
  • ヘルプ
    • ご利用ガイド
    • Wiki初心者向けガイド(基本操作)
    • このウィキの管理者に連絡
    • 運営会社に連絡(不具合、障害など)
ページ検索 メニュー
IRCAM OpenMusic 支援
  • ウィキ募集バナー
  • 目安箱バナー
  • 操作ガイド
  • 新規作成
  • 編集する
  • 全ページ一覧
  • 登録/ログイン
ページ一覧
IRCAM OpenMusic 支援
  • ウィキ募集バナー
  • 目安箱バナー
  • 操作ガイド
  • 新規作成
  • 編集する
  • 全ページ一覧
  • 登録/ログイン
ページ一覧
IRCAM OpenMusic 支援
ページ検索 メニュー
  • 新規作成
  • 編集する
  • 登録/ログイン
  • 管理メニュー
管理メニュー
  • 新規作成
    • 新規ページ作成
    • 新規ページ作成(その他)
      • このページをコピーして新規ページ作成
      • このウィキ内の別ページをコピーして新規ページ作成
      • このページの子ページを作成
    • 新規ウィキ作成
  • 編集
    • ページ編集
    • ページ編集(簡易版)
    • ページ名変更
    • メニュー非表示でページ編集
    • ページの閲覧/編集権限変更
    • ページの編集モード変更
    • このページにファイルをアップロード
    • メニューを編集
    • 右メニューを編集
  • バージョン管理
    • 最新版変更点(差分)
    • 編集履歴(バックアップ)
    • アップロードファイル履歴
    • ページ操作履歴
  • ページ一覧
    • このウィキの全ページ一覧
    • このウィキのタグ一覧
    • このウィキのタグ一覧(更新順)
    • このページの全コメント一覧
    • このウィキの全コメント一覧
    • おまかせページ移動
  • RSS
    • このwikiの更新情報RSS
    • このwikiの新着ページRSS
  • ヘルプ
    • ご利用ガイド
    • Wiki初心者向けガイド(基本操作)
    • このウィキの管理者に連絡
    • 運営会社に連絡する(不具合、障害など)
  • atwiki
  • IRCAM OpenMusic 支援
  • lzgenerate

IRCAM OpenMusic 支援

lzgenerate

最終更新:2013年09月11日 21:36

Bot(ページ名リンク)

- view
だれでも歓迎! 編集
LZGENERATE

   Arguments:  dict maxpast [[length]] &optional mostprobable minpast mincomplex incipit1 incipit2 reconstr strategy constraints equiv1 equiv2
   [generic-function]


Generates a new sequence following the model of a given LZ continuation tree (generated by the LZify function).

inputs :

dict: a LZ continuation tree generated by the LZify function.
maxPast: nil or integer. maximum length of the context. If nil : no maximum past constraint.
Length: integer, >=1. length of the sequence to be generated.
mostprobable: if not true, inverse all the probability distributions (the less probable one becomes the most probable one).
minPast: integer, >=0. minimum length of the context.
minComplex: integer, >=0. minimum size of the subLZtree of each context.
incipit1: list. a sequence of analysis symboles that will be the beginning of the generated analysis sequence.
incipit2: list. a sequence of synthesis symboles that will be the beginning of the generated synthesis sequence.
reconstr: the name of a function that reconstructs the symbol from analysis and synthesis information. If nil, the predefined (in LZify) fonction will be used.
strategy: the name of function that chooses new synthesis information according to its last evolution.
constraints: constraint function of the last generated analysis information and last generated sequence, both reversed.
equiv1: the name of function that compares a symbole at the root of the tree with the last generated one.
equiv2: the name of function that compares a symbole with any in the tree.

output :

a list of events in the same alphabet as the analyzed sequence.

After building a pattern dictionary using LZify, LZGenerate may be used to
generate a new sequence that imitates the statistical behaviour encoded into the dictionary.
If a list of <something> had been analyzed by LZify, the result will be a new list of <something>.
At a every point of the generation, LZGenerate looks at the longest sequence of last generated elements
that belongs to the LZ tree (even those that do not start exactly from the root).
It then checks the conditional probabilities associated with
that pattern (or context) , then generates a new element with regard to the probability. It then adds
this element to the right of the generated sequence, and iterates.

If maxPast in an integer, the length of the context must not exceed maxPast. That is to say, this
limits the size of the memory of what LZGenerate has previously generated.

If, at a certain point of the generation, the length of the context is lower than minPast, then LZGenerate
goes back one step before and generates another symbols until it respects the minPast constraint. It may
go back as far as necessa
ry. If no sequence can respect the constraint, LZGenerate returns nil.
Thanks to the minPast parameter, you can prevent LZGenerate from generating with no or little context.

If, at a certain point of the generation, the number of all the nodes of the tree that can be reached from now on
(which is called the subtree generated by the present context) is lower than minComplex, then LZGenerate
takes into account not only the continuation of the longest context, but also those of more little context,
this in order to get out of this subtree. Thanks to the minContext parameter, you can prevent LZGenerate
from getting stuck inside a little subtree.

タグ:

+ タグ編集
  • タグ:
タグの更新に失敗しました
エラーが発生しました。ページを更新してください。
ページを更新
「lzgenerate」をウィキ内検索
LINE
シェア
Tweet
IRCAM OpenMusic 支援
記事メニュー

メニュー

  • トップページ
    • ダウンロード
    • インストール
  • クイックスタート
    • セッションの開始
    • パッチの作成
    • ワークスペースでのパッチの操作
    • アプリケーションを作る (1)
    • アプリケーションを作る (2)
    • アプリケーションを作る (3)
    • オブジェクトの操作 (1)
    • オブジェクトの操作 (2)
    • 保存・終了
  • ユーザーマニュアル
  • 基本リファレンス
  • ライブラリリファレンス
    • Esquisse
    • LZ
    • OMAlea
    • OMChaos
    • OMClouds
    • Profile
    • RepMus
    • Situation


  • OpenMusicの歴史
  • 非公式Tutorial 概要
    • 01 note chord chord-seq
    • 02 repeat-n omloop
    • 03 random
    • 04 omif subpatch
    • 05 様々なファンクション
    • 06 バッハ平均律
    • 07 武満徹分析
    • 08 multi-seq voice poly
    • 09 ディアトニック即興
    • 10 メシアン様式即興
    • 11 文字列のファンクション
    • 12 ハイドンの名による
    • 13 リズム1
    • 14 リズム2ファーニホウ1
    • 15 リズム3ファーニホウ2
    • 16 リズム4ファーニホウ3


  • 掲示板


  • 落書き
  • 落書き20150822



ここを編集
記事メニュー2

更新履歴

取得中です。


ここを編集
人気記事ランキング
  1. Esquisse
  2. autotransp
  3. リファレンス
  4. interpol-tab
  5. 非公式Tutorial 09 ディアトニック即興
  6. pstgenerate
  7. rossler
  8. remove-rests
  9. ライブラリリファレンス
  10. as->om
もっと見る
最近更新されたページ
  • 421日前

    トップページ
  • 973日前

    ユーザーマニュアル
  • 1185日前

    非公式Tutorial 03 random
  • 1191日前

    非公式Tutorial 12 ハイドンの名によるメヌエット
  • 1191日前

    非公式Tutorial 10 メシアン様式即興
  • 1191日前

    非公式Tutorial 09 ディアトニック即興
  • 1191日前

    非公式Tutorial 08 multi-seq voice poly
  • 1191日前

    非公式Tutorial 07 武満徹分析
  • 1911日前

    非公式Tutorial 14 リズム2ファーニホウ1
  • 1978日前

    掲示板
もっと見る
人気記事ランキング
  1. Esquisse
  2. autotransp
  3. リファレンス
  4. interpol-tab
  5. 非公式Tutorial 09 ディアトニック即興
  6. pstgenerate
  7. rossler
  8. remove-rests
  9. ライブラリリファレンス
  10. as->om
もっと見る
最近更新されたページ
  • 421日前

    トップページ
  • 973日前

    ユーザーマニュアル
  • 1185日前

    非公式Tutorial 03 random
  • 1191日前

    非公式Tutorial 12 ハイドンの名によるメヌエット
  • 1191日前

    非公式Tutorial 10 メシアン様式即興
  • 1191日前

    非公式Tutorial 09 ディアトニック即興
  • 1191日前

    非公式Tutorial 08 multi-seq voice poly
  • 1191日前

    非公式Tutorial 07 武満徹分析
  • 1911日前

    非公式Tutorial 14 リズム2ファーニホウ1
  • 1978日前

    掲示板
もっと見る
ウィキ募集バナー
急上昇Wikiランキング

急上昇中のWikiランキングです。今注目を集めている話題をチェックしてみよう!

  1. asagaolabo @ ポップン百科大事典
  2. 将棋ライク攻略@wiki
  3. NIKKEぺでぃあ
  4. 検索してはいけない言葉 @ ウィキ
  5. ElectriarCode @ ウィキ
  6. Fate/Grand Order @wiki 【FGO】
  7. モンスター烈伝オレカバトル@wiki
  8. 星の翼(Starward) 日本語wiki @ ウィキ
  9. 東方同人CDの歌詞@Wiki
  10. 千鳥の鬼レンチャン サビだけカラオケデータベース
もっと見る
人気Wikiランキング

atwikiでよく見られているWikiのランキングです。新しい情報を発見してみよう!

  1. アニヲタWiki(仮)
  2. ゲームカタログ@Wiki ~名作からクソゲーまで~
  3. ストグラ まとめ @ウィキ
  4. 初音ミク Wiki
  5. 発車メロディーwiki
  6. 検索してはいけない言葉 @ ウィキ
  7. 機動戦士ガンダム バトルオペレーション2攻略Wiki 3rd Season
  8. 機動戦士ガンダム EXTREME VS.2 INFINITEBOOST wiki
  9. オレカバトル アプリ版 @ ウィキ
  10. Grand Theft Auto V(グランドセフトオート5)GTA5 & GTAオンライン 情報・攻略wiki
もっと見る
新規Wikiランキング

最近作成されたWikiのアクセスランキングです。見るだけでなく加筆してみよう!

  1. MadTown GTA (Beta) まとめウィキ
  2. MADTOWNGTAまとめwiki
  3. まどドラ攻略wiki
  4. ちいぽけ攻略
  5. SurrounDead 攻略 (非公式wiki)
  6. Shoboid RPまとめwiki
  7. シュガードール情報まとめウィキ
  8. 戦国ダイナスティ攻略Wiki@ウィキ
  9. ソニックレーシング クロスワールド @ ウィキ
  10. 20XX @ ウィキ
もっと見る
全体ページランキング

最近アクセスの多かったページランキングです。話題のページを見に行こう!

  1. angler - MADTOWNGTAまとめwiki
  2. 参加者一覧 - MADTOWNGTAまとめwiki
  3. 魔獣トゲイラ - バトルロイヤルR+α ファンフィクション(二次創作など)総合wiki
  4. 参加者一覧 - MadTown GTA (Beta) まとめウィキ
  5. SILENT HILL f - アニヲタWiki(仮)
  6. ギャプラン - 機動戦士ガンダム EXTREME VS.2 INFINITEBOOST wiki
  7. XVI - MADTOWNGTAまとめwiki
  8. 模擬ドラフト結果 - おんJ模擬ドラフトまとめwiki
  9. 参加者一覧 - ストグラ まとめ @ウィキ
  10. 白狐 - MADTOWNGTAまとめwiki
もっと見る

  • このWikiのTOPへ
  • 全ページ一覧
  • アットウィキTOP
  • 利用規約
  • プライバシーポリシー

2019 AtWiki, Inc.