信用リスクモデリング ケーススタディ

Size: px
Start display at page:

Download "信用リスクモデリング ケーススタディ"

Transcription

1 信用リスクモデリングケーススタディ The MathWorks Computational Finance Team 2011 The MathWorks, Inc. 1

2 Time Table Time Agenda 15:20 15:25 Introduction 15:25 15:50 決定木による格付モデル 15:50 16:00 休憩 16:00 16:15 遷移行列とデフォルト確率 16:15 16:35 信用リスクの解析 16:35 16:50 まとめ 2

3 目標 : 信用リスクモデルのアプリケーション作成 信用 VaR を算出するツールを開発し Excel のアプリケーションとして組み込む Historical Data Portfolio Data 格付け Rating System クーポン レート日付業種優先順位 Market Data 利率 回収率 Transition Probabilities Credit Value at Risk 3

4 要求課題 計算能力 1,000 以上の債券銘柄 10,000 回のシミュレーション コスト 開発工数の削減 既存環境への適用 透明性 アルゴリズムの可読性 第三者への説明 4

5 Agenda 決定木による格付モデル 遷移行列とデフォルト確率 信用リスクの解析 まとめ 5

6 Task 1: Calibrating the rating system 過去のデータから格付分類モデルを作成 Historical Data Portfolio Data 格付け Rating System クーポン レート日付業種優先順位 Market Data 利率 回収率 Transition Probabilities Credit Value at Risk 6

7 Calibrating the rating system Altman の Z- スコアのための 5 つの財務指標 ID WC_TA RE_TA EBIT_TA MVE_BVTD S_TA Industry Rating System 手順 Ratings AA 1. データのインポート : DB / Excel 2. 線型回帰による単純な分類モデルを構築 3. ランダム フォレストを適用した分類モデルを構築 4. 分類モデルをROC 曲線 /AUCにより評価 7

8 Visual Query Builder データベースへのアクセス用 GUI 8

9 Confusion Matrix 混同行列 分類表 混同対照表 モデルの精度をあらわす表で 各成分には正しく分類された場合の数と 誤って分類された場合の数が示されている モデルによる分類 実際の分類 AAA AA A BBB BB B CCC AAA AA A BBB BB B CCC モデルでは BB だが実際の格付は AA 9

10 Decision Tree 決定木 機械学習の一種で 木 構造を用いた予測方法 y f ( x, x2,, x 1 n ) の f が木構造 決定木には回帰木と分類木の 2 種類が存在 出力が連続的であれば 回帰 離散的であれば 分類 : Branch : Leaf + : Node 10

11 Random Forest vs. Bagging Bagging (Bootstrap Aggregating) 与えられたデータセットからブートストラップ法によって学習用サンプルデータを作成し そのサンプルデータを用いて決定木を指定された本数分だけ生成するアルゴリズム Random Forest 多数の決定木を用いた集団学習アルゴリズムの一つで Bagging という手法を発展させたもの 違いは? ( x, x2,, x Baggingは 各ブランチにて 1 n 全てに対して評価基準を計算し 最も高い変数を分岐変数として採用する ( x, x2,, x 一方 RFは 各ブランチにて 1 n からランダムに選出して評価基準を計算し 最も高い変数を分岐変数として採用する ) ) 11

12 Bagging Random Forest vs. Bagging アルゴリズムの違い [x 1, x 2,, x 25 ] 5 つランダム選択 [x 3, x 4, x 16, x 21, x 23 ] Gini 係数などを評価 x 3 を採択 x3 < x3 > 変数をいくつランダムに選択するか? 開発者である Breiman は変数の数のルートの値を分岐変数の候補として選択することを推奨 Random Forest の長所 全ての変数に対して評価しないので計算コストが低い 大規模データに強い 12

13 ROC 曲線 : Receiver Operating Characteristic Curve 受信者動作特性曲線 ROC 曲線 : 分類の精度を表すグラフ 赤枠で囲まれるような表を考え 閾値 11 を設けます この時 11 以上を陽性 (Positive) 11 未満を陰性 (Negative) といい 5 個の F のうち 1 個が Positive 側に含まれることから偽陽性率は 0.2 で 10 個の T のうち 5 個が Positive 側に属するので真陽性率は 0.5 となります Threshold = 11 関数 perfcurve は False/True Positive Rate や AUC (Area under the curve) を計算する スコア ラベル ( 分類 ) 偽陽性率 (False Positive) 真陽性率 (True Positive) 16 T T F T T T F T T T T F F T F

14 ROC 曲線と AUC >> [x, y, t, auc] = perfcurve(labels, scores, 'T ); >> plot(x,y); >> xlabel( False Positive Rate ); ylabel('true Positive Rate'); >> text(0.5, 0.3, ['AUC = ', num2str(auc)], 'EdgeColor', 'k'); >> title('roc 曲線 '); AUC: ROC 曲線と x 軸が囲む領域の面積で AUC が 1 に近いほど分類の精度が高いことを意味する 14

15 格付 x 以下でデフォルトした会社の割合 CAP 曲線 Cumulative Accuracy Profile x k D D k 理想的な予測精度 1 x : 格付の低いほうから並べた順序付きランク N : 会社の総数 N k : 格付 k に属する会社の数 D k : 格付 k でデフォルトした会社の数 D : デフォルトした会社の総数 0 ランダムな予測精度 格付 x 以下に属する会社の割合 1 x k N N k 15

16 AR Accuracy Ratio 以下のように囲まれる面積の比で定義される値で 1 に近いほど分類モデルの精度が良いことを示す AR = の面積 の面積 16

17 登場した関数 R2008b R2009a confusionmat : Confusion Matrix を計算 dataset : データセット配列の作成 perfcurve : ROC 曲線や AUC などを算出 querybuilder : データベースにアクセスするためのUI regress : 線型回帰を実施 R2011a R2009a rng : 乱数生成器の初期化などのユーティリティ TreeBagger : Bagging/Random Forest 用クラス 17

18 Key tasks and solutions Key tasks 1. Data Management 2. Statistical Modeling Solutions 1. Database Toolbox: import from / export to database 2. Statistics Toolbox: dataset array, regression analysis, decision tree, confusion matrix, ROC curve. 18

19 Agenda 決定木による格付モデル 遷移行列とデフォルト確率 信用リスクの解析 まとめ 19

20 Task 2: Transition Probabilities 過去データに基づいた遷移確率行列を算出 Historical Data Portfolio Data 格付け Rating System クーポン レート日付業種優先順位 Market Data 利率 回収率 Transition Probabilities Credit Value at Risk 20

21 遷移確率行列の推定 Migration History ID Date Rating 1 07-Jul-05 A 1 31-Nov-07 BBB 2 07-Jul-05 AAA 2 02-Dec-08 AA 2 02-Dec-09 AAA 3 07-Aug-06 A 3 27-Sep-08 AA Migration Matrix 31-Dec Dec Dec Dec-09 A BBB BBB BBB AAA AAA AA AAA A A AA AA Transition Probability Matrix to AAA to AA to A to BBB from AAA from AA from A from BBB

22 遷移確率行列の推定 手順 1. テキストデータのインポートと時系列データの作成 2. Migration Matrixの生成 3. 遷移確率行列の算出と可視化 4. デフォルト確率の計算 AAA 93.68% 5.55% 0.59% 0.18% AA 2.44% 92.60% 4.03% 0.73% 0.15% 0.06% A 0.14% 4.18% 91.02% 3.90% 0.60% 0.08% 0.08% BBB 0.03% 0.23% 7.49% 87.86% 3.78% 0.39% 0.06% 0.16% BB 0.03% 0.12% 0.73% 8.27% 86.74% 3.28% 0.18% 0.64% B 0.11% 0.82% 9.64% 85.37% 2.41% 1.64% CCC 0.37% 1.84% 6.24% 81.88% 9.67% D 10 AAA AA A BBB BB B CCC D 22

23 transprob vs. transprobbytotals transprob: Estimation of transition probabilities from credit ratings data transprobbytotals: Estimation of transition probabilities from preprocessed credit ratings data transprobbytotals は transprob の結果を処理! 23

24 MATLAB Central Open exchange for the MATLAB and Simulink user community 662,000 visits per month File Exchange Upload/download access to free files including MATLAB code, Simulink models, and documents Ability to rate files, comment, and ask questions More than 9,000 contributed files, 400 submissions per month, 25,500 downloads per day Newsgroup Web forum for technical discussions about MATLAB and Simulink 200 posts per day Blogs Frequent posts from key MathWorks developers who design and build the products Open conversation at blogs.mathworks.com Based on February 2009 data 24

25 登場した関数 R2008a R2010b R2010b cfdates : キャッシュフロー日付の作成 fillts : Financial Time Series Objectの欠損データ補完 fints : Financial Time Series Objectを作成 intersect : 2つの集合の共通部分を抽出 (A B) ordinal : オーディナル配列の作成 parfor : for ループの並列版 transprob : 格付データから遷移確率行列を推定 transprobbytotals : 前処理済み格付データから遷移確率行列を推定 25

26 Key tasks and solutions AAA 93.68% 5.55% 0.59% 0.18% Key tasks 1. Improving Performance 2. Financial Analysis 3. Customized graphics AA A BBB BB B CCC D 2.44% 92.60% 0.14% 4.18% 0.03% 0.23% 0.03% 0.12% 4.03% 91.02% 7.49% 0.73% 0.11% 0.73% 3.90% 87.86% 8.27% 0.82% 0.37% 0.15% 0.60% 3.78% 86.74% 9.64% 1.84% 0.08% 0.39% 3.28% 85.37% 6.24% 0.06% 0.18% 2.41% 81.88% 0.06% 0.08% 0.16% 0.64% 1.64% 9.67% 10 AAA AA A BBB BB B CCC D Solutions 1. Parallel Computing Toolbox: parallel-for loop, etc. 2. Financial Toolbox: financial time series object, transiton probabilities. 3. MATLAB Central: File Exchange 26

27 Agenda 決定木による格付モデル 遷移行列とデフォルト確率 信用リスクの解析 まとめ 27

28 Task 3: Credit Risk Analysis 債券ポートフォリオの信用 VaR を計算 Historical Data Portfolio Data 格付け Rating System クーポン レート日付業種優先順位 Market Data 利率 回収率 Transition Probabilities Credit Value at Risk 28

29 Task 3: Credit risk analysis 手順 1. 債券ポートフォリオの価格算出 2. モンテカルロ シミュレーションの実行 3. シミュレーションに基づいてポートフォリオを再評価 Historical Data Portfolio Data Ratings Coupon rates Dates Industries Seniorities Rating System Market Data Interest rates Recovery rates Modeling data Transition probabilities Risk thresholds Time horizon Credit Value at Risk 29

30 モンテカルロ シミュレーションの実行 1 年後の格付予測 乱数を使って 1 年後の格付を予測する 1. 各格付けの閾値を設ける (Z AAA, Z AA,, Z CCC, Z D ) 2. 乱数生成器を使って確率変数 R を作る 3. Z X R Z X-1 を評価して R が属する格付けを決める ここで x, x-1 は格付けを表し x-1 は x より一つ格付けが 高い ことを意味します 30

31 モンテカルロ シミュレーションの実行格付けのための閾値設定 to AAA to AA to A... to D from AAA from AA from A : : : : : : from CCC Transition Probability Matrix P AAA +...+P D P AA P D P A P D... P D AAA AA A : : : : : : CCC

32 モンテカルロ シミュレーションの実行格付けのための閾値設定 P AAA +...+P D P AA P D P A P D... P D AAA AA A : : : : : : CCC Z AAA Z AA Z A... Z D AAA AA A : : : : : : CCC

33 モンテカルロ シミュレーションの実行 乱数生成器による確率変数の作成 の業種間に相関がある多次元正規分布に従う乱数を セット IndustryRandom = mvnrnd(zeros(12,1), Cov, 10000) IndustryRandom(6, :) IndustryRandom(4, :) : : IndustryRandom(11, :) BondRandom = α IndustryRandom(6, :) IndustryRandom(4, :) : : IndustryRandom(11,:) randn(1311, 1e4) 但し α はExcel 上の Participation weight 33

34 モンテカルロ シミュレーションの実行確率変数がどの格付けに属するか評価 Z X BondRandom(n, :) Z X-1 を評価 たとえば n 番目の債権が AA で先に作成した閾値ベクトルが Z AAA Z AA Z A Z BBB... Z CCC Z D AA で 乱数により生成した BondRandom(n, :) のある成分の値が とすると Z A Z AA という関係より シミュレーションの結果は Z AA と判定される 34

35 シミュレーションに基づいてポートフォリオを再評価 シミュレーションの結果 格付が D 判定になった場合は Seniority ( 優先順位 ) に応じて Β 分布に従う乱数により回収率をシミュレーション ( デフォルト時の価格 ) = ( 額面価格 ) ( ( a, b) に従う乱数 ) 但し a b

36 Speeding-Up MATLAB bsxfun 関数 (m n) 行列と (m 1) ベクトル をループなしで処理 = 36

37 Speeding-Up MATLAB bsxfun 関数 (m n) 行列と (1 n) ベクトル をループなしで処理 = 37

38 登場した関数 betarnd : Β 分布に従う乱数生成 bsxfun : 行列とベクトルを要素ごとに演算 R2009b prbyzero : ゼロ クーポン イールドカーブから債券価格を算出 mvnrnd : 多次元正規分布に従う乱数生成 norminv : 正規分布の逆関数 prctile : パーセンタイル値の計算 38

39 Key tasks and solutions Key tasks 1. Monte Carlo Simulation 2. Financial Analysis Solutions 1. Statistics Toolbox: many supported probability distributions and random number generator. 2. Financial Toolbox: bond pricing, term structure. 39

40 Agenda 決定木による格付モデル 遷移行列とデフォルト確率 信用リスクの解析 まとめ 40

41 Computational Finance Workflow Access Research and Quantify Share Files Files Databases Datafeeds Data Analysis and Visualization Data Financial Analysis Modeling & Visualization Application Development Reporting Reporting Applications Production Databases Financial Modeling Applications Spreadsheet Link EX Database Datafeed Datafeeds Fixed Income Financial Derivatives Econometrics Statistics Financial Application Development Optimization Builder EX Builder NE Builder JA Production MATLAB Compiler Report Generator MATLAB Parallel Computing MATLAB Distributed Computing Server Automate 41

42 標準モジュール生成と配布 Excel VBA への組込み 42

43 標準モジュールの配布フロー 1 Toolboxes MATLAB Compiler MATLAB デスクトップ 3 End User 2 MATLAB Builder EX 4.dll MATLAB Compiler 43

44 要求課題 計算能力 1,000 以上の債券銘柄 10,000 回のシミュレーション コスト 開発工数の削減 既存環境への適用 透明性 アルゴリズムの可読性 第三者への説明 44

45 MATLAB s solutions 計算能力 強力な計算エンジンと様々な関数 並列計算をサポート コスト 少ないコーディング作業 他言語 他のアプリへの実装 透明性 インタプリタ型言語 レポート生成機能 45

46 トレーニングサービス トレーニングサービス 定期トレーニング ; 東京 名古屋 大阪にて定期開催 基礎コース (11) 応用コース (11) 専門コース (4) をご提供 オンサイトトレーニング ; お客様サイトにて開催 ご要望に応じて 3 つのレベルでカリキュラムのカスタマイズが可能 投資 効果 投資対効果の最大化 46

47 Support and Community 47

48 Connections Program More than 300 add-on products and services that complement and extend MathWorks products: Specialized third-party toolboxes for MATLAB Interfaces to third-party software and hardware products Specialized training courses and consulting services System integrators and suppliers that incorporate MathWorks products 48

49 Book Program More than 1,000 books for educational and professional use, in 26 languages Controls Signal Processing Image Processing Biosciences Communications Mechanical Engineering Mathematics Aerospace Engineering Environmental Sciences Chemistry Finance Electronics 49

50 Technical Support Resources Over 100 support engineers All with MS degrees (EE, ME, CS) Local support in North America, Europe, and Asia Comprehensive, product-specific Web support resources High customer satisfaction 95% of calls answered within three minutes 70% of issues resolved within 24 hours 80% of customers surveyed rate satisfaction at % 50

Presentation Title

Presentation Title 並列計算 並列実行による高速化ソリューション MathWorks Japan アプリケーションエンジニアリング部アプリケーションエンジニア吉田剛士 2012 The MathWorks, Inc. 1 アジェンダ MATLAB R2012b ハイライト PCT / MDCS 新機能ハイライト Simulink プロダクトの並列化 まとめ 2 MATLAB R2012b のハイライト 1 新しいデスクトップ

More information

MATLAB®製品紹介セミナー

MATLAB®製品紹介セミナー MATLAB における分類 パターン認識 - 入門編 - MathWorks Japan アプリケーションエンジニアリング部 ( テクニカルコンピューティング部 ) アプリケーションエンジニア大開孝文 2012 The MathWorks, Inc. 1 アジェンダ 回帰モデルと分類モデルについて 分類手法を使ったワインの品質モデリング まとめ 2 分類手法を使ったワインの品質モデリング アプローチ

More information

202 2 9 Vol. 9 yasuhisa.toyosawa@mizuho-cb.co.jp 3 3 Altman968 Z Kaplan and Urwitz 979 Merton974 Support Vector Machine SVM 20 20 2 SVM i s i x b si t = b x i i r i R * R r (R,R, L,R ), R < R < L < R

More information

MATLAB®によるビッグデータ解析

MATLAB®によるビッグデータ解析 MATLAB によるビッグデータ解析 MathWorks Japan アプリケーションエンジニアリング部 アプリケーションエンジニア 吉田剛士 2013 The MathWorks, Inc. 1 ビッグデータ解析とその背景増え続けるデータ量 ビッグデータとは 100TB ~ 10PB 程度のデータ量 データが膨大になる理由 データソースの多様化と高性能化 スマートフォン位置情報監視カメラ検索情報

More information

製品開発の現場では 各種のセンサーや測定環境を利用したデータ解析が行われ シミュレーションや動作検証等に役立てられています しかし 日々収集されるデータ量は増加し 解析も複雑化しており データ解析の負荷は徐々に重くなっています 例えば自動車の車両計測データを解析する場合 取得したデータをそのまま解析

製品開発の現場では 各種のセンサーや測定環境を利用したデータ解析が行われ シミュレーションや動作検証等に役立てられています しかし 日々収集されるデータ量は増加し 解析も複雑化しており データ解析の負荷は徐々に重くなっています 例えば自動車の車両計測データを解析する場合 取得したデータをそのまま解析 ホワイトペーパー Excel と MATLAB の連携がデータ解析の課題を解決 製品開発の現場では 各種のセンサーや測定環境を利用したデータ解析が行われ シミュレーションや動作検証等に役立てられています しかし 日々収集されるデータ量は増加し 解析も複雑化しており データ解析の負荷は徐々に重くなっています 例えば自動車の車両計測データを解析する場合 取得したデータをそのまま解析に使用することはできず

More information

() ( ) ( ) (1996) (1997) (1997) EaR (Earning at Risk) VaR ( ) ( ) Memmel (214) () 2 (214) 2

() ( ) ( ) (1996) (1997) (1997) EaR (Earning at Risk) VaR ( ) ( ) Memmel (214) () 2 (214) 2 1 (Basel Committee on Banking Supervision, BCBS) (BCBS(24), BCBS(215) ) *1 ( ) ( (1997) (213a,b) ) 2 *1 (214) 1 () ( ) ( ) (1996) (1997) (1997) EaR (Earning at Risk) VaR 2 1 1 ( ) ( ) Memmel (214) () 2

More information

Elastic stack Jun Ohtani 1

Elastic stack Jun Ohtani 1 Elastic stack Jun Ohtani 2017/12/06 @johtani 1 about Me, Jun Ohtani / Technical Advocate lucene-gosen ElasticSearch Server http://blog.johtani.info Elasticsearch, founded in 2012 Products: Elasticsearch,

More information

要旨 1. 始めに PCA 2. 不偏分散, 分散, 共分散 N N 49

要旨 1. 始めに PCA 2. 不偏分散, 分散, 共分散 N N 49 要旨 1. 始めに PCA 2. 不偏分散, 分散, 共分散 N N 49 N N Web x x y x x x y x y x y N 三井信宏 : 統計の落とし穴と蜘蛛の糸,https://www.yodosha.co.jp/jikkenigaku/statistics_pitfall/pitfall_.html 50 標本分散 不偏分散 図 1: 不偏分散のほうが母集団の分散に近付くことを示すシミュレーション

More information

MATLAB® Hands-on Seminar

MATLAB® Hands-on Seminar 保険業界向け MATLAB セミナー数理モデル開発の高度化と効率化へ向けての機能紹介 中川慶子 アプリケーションエンジニア MathWorks Japan 2011 The MathWorks, Inc. 1 アジェンダ MATLABについて数式処理と数値計算の連携デモ : 1. ディスカウントファクターの導出 2. 確率ボラティリティモデルを使ったプライシング 3. VARモデルを用いたシナリオ

More information

センサーデータアナリティクスの開発から運用まで

センサーデータアナリティクスの開発から運用まで センサーデータアナリティクスの開発から運用まで MathWorks Japan アプリケーションエンジニアリング部アプリケーションエンジニア吉田剛士 2016 The MathWorks, Inc. 1 Agenda センサーデータの整理整頓 時系列の分類 解析環境の構築 CSV ファイル データへのアクセスと探索 データの前処理予測モデルの構築システムへの統合 2 データの整理整頓生データそのままでは解析作業が進まない

More information

AI技術の紹介とセンサーデータ解析への応用

AI技術の紹介とセンサーデータ解析への応用 AI を活用したセンサーデータ解析 MathWorks Japan アプリケーションエンジニアリンググループアプリケーションエンジニア吉田剛士 2018 The MathWorks, Inc. 1 AI を活用したセンサーデータ解析 11:20-11:50 MATLAB による AI 作成 アプリを使った簡易的な解析 学習モデルのパラメータ自動調整 学習モデルのスタンドアロン化 2 課題 : ターボファンエンジンの予知保全

More information

大規模データベースを用いた信用リスク計測の問題点と対策(変数選択とデータ量の関係)

大規模データベースを用いた信用リスク計測の問題点と対策(変数選択とデータ量の関係) ( ) CRD 450,000 86 2, CRD,, CRD 1 1 4 2 5 2.1........................................ 5 2.2............................... 6 3 2 7 3.1 2.................................... 7 3.2.............................

More information

Presentation Title

Presentation Title データの本質を読み解くための機械学習 MATLAB でデータ解析の課題に立ち向かう MathWorks Japan アプリケーションエンジニア部アプリケーションエンジニア井原瑞希 2016 The MathWorks, Inc. 1 Buzzwords IoT 人工知能 / AI データ解析 ビッグデータ 2 データ解析ワークフロー データへのアクセスと探索 データの前処理 予測モデルの構築 システムへの統合

More information

MATLAB® における並列・分散コンピューティング ~ Parallel Computing Toolbox™ & MATLAB Distributed Computing Server™ ~

MATLAB® における並列・分散コンピューティング ~ Parallel Computing Toolbox™ & MATLAB Distributed Computing Server™ ~ MATLAB における並列 分散コンピューティング ~ Parallel Computing Toolbox & MATLAB Distributed Computing Server ~ MathWorks Japan Application Engineering Group Takashi Yoshida 2016 The MathWorks, Inc. 1 System Configuration

More information

Microsoft Word - D JP.docx

Microsoft Word - D JP.docx Application Service Gateway Thunder/AX Series vthunder ライセンスキー インストール 手順 1 1.... 3 2. vthunder... 3 3. ACOS... 3 4. ID... 5 5.... 8 6.... 8 61... 8 62 GUI... 10 2 1. 概要 2. vthunder へのアクセス 方法 SSHHTTPSvThunder

More information

Rの基本操作

Rの基本操作 Microsoft Azure 高校生のための Azure Machine Learning By M. Takezawa 機械学習 (Machine Learning) とは 機械学習とは 機械にデータを学習させ データに潜むパターンや特性を発見し予測させることです Microsoft Azure Machine Learning とは Microsoft 社が提供する Azure の機能の一つであり

More information

Managing and Sharing MATLAB Code

Managing and Sharing MATLAB Code MATLAB 入門 ~ 開発向けプログラミング編 ~ MathWorks Japan アプリケーションエンジニアリング部テクニカルコンピューティング 大開孝文 2015 The MathWorks, Inc. 1 プログラミング言語としての MATLAB 2014 年 7 月 IEEE Spectrum による プログラミング言語の人気調査 (12 種類の項目での結果 ) 結果 : MATLAB が

More information

Microsoft PowerPoint - 【最終提出版】 MATLAB_EXPO2014講演資料_ルネサス菅原.pptx

Microsoft PowerPoint - 【最終提出版】 MATLAB_EXPO2014講演資料_ルネサス菅原.pptx MATLAB/Simulink を使用したモータ制御アプリのモデルベース開発事例 ルネサスエレクトロニクス株式会社 第二ソリューション事業本部産業第一事業部家電ソリューション部 Rev. 1.00 2014 Renesas Electronics Corporation. All rights reserved. IAAS-AA-14-0202-1 目次 1. はじめに 1.1 モデルベース開発とは?

More information

その人工知能は本当に信頼できるのか? 人工知能の性能を正確に評価する方法を開発 概要人工知能 (AI) によるビッグデータ解析は 医療現場や市場分析など社会のさまざまな分野での活用が進み 今後さらなる普及が予想されています また 創薬研究などで分子モデルの有効性を予測する場合にも AI は主要な検証

その人工知能は本当に信頼できるのか? 人工知能の性能を正確に評価する方法を開発 概要人工知能 (AI) によるビッグデータ解析は 医療現場や市場分析など社会のさまざまな分野での活用が進み 今後さらなる普及が予想されています また 創薬研究などで分子モデルの有効性を予測する場合にも AI は主要な検証 その人工知能は本当に信頼できるのか? 人工知能の性能を正確に評価する方法を開発 概要人工知能 (AI) によるビッグデータ解析は 医療現場や市場分析など社会のさまざまな分野での活用が進み 今後さらなる普及が予想されています また 創薬研究などで分子モデルの有効性を予測する場合にも AI は主要な検証手段として重視されています ところが 私たちは肝心の AI の性能を正しく評価できているのでしょうか?

More information

PowerPoint Presentation

PowerPoint Presentation MATLAB による 大規模フリートデータ解析 アプリケーションエンジニアリング部齊藤甲次朗 2015 The MathWorks, Inc. 1 アジェンダ はじめに ビッグデータ解析の課題 MATLAB を活用したフリートデータ解析事例 フリートデータ解析実践 デスクトップでの解析 クラスターへのスケールアウト MATLAB 解析のシステムへの統合 まとめ 2 25 GB / 1hour 4 フリートデータ解析を含むビッグデータ解析の課題

More information

Web Microsoft 2008 R2 Database Database!! Database 04 08

Web   Microsoft 2008 R2 Database Database!! Database 04 08 Database Database Web http://www.microsoft.com/japan/sqlserver/2008/r2/solution/comparison/default.mspx Microsoft 2008 R2 Database Database!! 03 2009 6 1 Database 04 08 vs. Database 12 2008 R2 5 14! 5!

More information

BIS CDO CDO CDO CDO Cifuentes and O Connor[1] Finger[6] Li[8] Duffie and Garleânu[4] CDO Merton[9] CDO 1 CDO CDO CDS CDO three jump model Longstaff an

BIS CDO CDO CDO CDO Cifuentes and O Connor[1] Finger[6] Li[8] Duffie and Garleânu[4] CDO Merton[9] CDO 1 CDO CDO CDS CDO three jump model Longstaff an CDO 2010 5 18 CDO(Collateralized Debt Obligation) Duffie and Garleânu[4] CDO CDS(Credit Default Swap) Duffie and Garleânu[4] 4 CDO CDS CDO CDS CDO 2007 CDO CDO CDS 1 1.1 2007 2008 9 15 ( ) CDO CDO 80 E-mail:taiji.ohka@gmail.com

More information

Probit , Mixed logit

Probit , Mixed logit Probit, Mixed logit 2016/5/16 スタートアップゼミ #5 B4 後藤祥孝 1 0. 目次 Probit モデルについて 1. モデル概要 2. 定式化と理解 3. 推定 Mixed logit モデルについて 4. モデル概要 5. 定式化と理解 6. 推定 2 1.Probit 概要 プロビットモデルとは. 効用関数の誤差項に多変量正規分布を仮定したもの. 誤差項には様々な要因が存在するため,

More information

MATLAB EXPO 2019 Japan プレゼン資料の検討

MATLAB EXPO 2019 Japan プレゼン資料の検討 自動運転向けソフトウェア Autoware と MATLAB /Simulink の連携 ~ 事例紹介 ~ 2019 年 5 月 28 日株式会社ネクスティエレクトロニクス SW 開発部技術開発グループ太田徳幸 Copyright TOMEN Electronics Corp. 目次 2/31 1. 会社概要 2. Autoware Toolbox 紹介 1. 取り組み背景 2. Autoware

More information

untitled

untitled 146,650 168,577 116,665 122,915 22,420 23,100 7,564 22,562 140,317 166,252 133,581 158,677 186 376 204 257 5,594 6,167 750 775 6,333 2,325 298 88 5,358 756 1,273 1,657 - - 23,905 23,923 1,749 489 1,309

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 復習 ) 時系列のモデリング ~a. 離散時間モデル ~ y k + a 1 z 1 y k + + a na z n ay k = b 0 u k + b 1 z 1 u k + + b nb z n bu k y k = G z 1 u k = B(z 1 ) A(z 1 u k ) ARMA モデル A z 1 B z 1 = 1 + a 1 z 1 + + a na z n a = b 0

More information

集中理論談話会 #9 Bhat, C.R., Sidharthan, R.: A simulation evaluation of the maximum approximate composite marginal likelihood (MACML) estimator for mixed mu

集中理論談話会 #9 Bhat, C.R., Sidharthan, R.: A simulation evaluation of the maximum approximate composite marginal likelihood (MACML) estimator for mixed mu 集中理論談話会 #9 Bhat, C.R., Sidharthan, R.: A simulation evaluation of the maximum approximate composite marginal likelihood (MACML) estimator for mixed multinomial probit models, Transportation Research Part

More information

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13 ProVAL Unit System Enable Recording Log Preferred Language Default File Type Default Project Path ProVAL : Unit SystemUse SI Units SI SI USCS Enable Recording Log Language Default File Type Default Project

More information

303 Human Factors in Nuclear Power Plant with Focus on Application of Man-machine Interface and Advanced Data Processing Technologies to Nuclear Power Industry Abstract We discuss issues involved in a

More information

CANapeを用いたラピッドコントロールプロトタイピングのバイパス手法による制御モデル開発

CANapeを用いたラピッドコントロールプロトタイピングのバイパス手法による制御モデル開発 ape を用いたラピッドコントロールプロトタイピングのバイパス手法による制御モデル開発 近年 自動車のソフトウェア開発において 開発期間の短縮やコスト削減の面からモデルベース開発が注目されています アイシン エィ ダブリュ株式会社は ラピッドコントロールプロトタイピングのバイパス手法による制御モデル開発にベクターの測定 / キャリブレーションツール ape ( キャナピー ) を導入しました 本稿では

More information

Oracle SQL Developerの移行機能を使用したOracle Databaseへの移行

Oracle SQL Developerの移行機能を使用したOracle Databaseへの移行 < ここに画像を挿入 > Oracle SQL Developer の移行機能を使用した Oracle Database への移行 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約 ) するものではないため 購買決定を行う際の判断材料になさらないで下さい

More information

C3 データ可視化とツール

C3 データ可視化とツール < 第 3 回 > データ可視化とツール 統計数理研究所 中野純司 nakanoj@ism.ac.jp データ可視化とツール 概要 データサイエンティスト育成クラッシュコース データサイエンティストとしてデータ分析を行う際に必要な可視化の考え方と それを実行するためのフリーソフトウェアを紹介する 1. はじめに 2. 静的なグラフィックス 3. 動的なグラフィックス 4. 対話的なグラフィックス 1.

More information

SAS Enterprise Miner PFD SAS Rapid Predictive Modeler & SAS SEMMA 5 SEMMA SAS Rapid Predictive Modeler SAS Rapid Predictive Modeler SAS Enterprise Gui

SAS Enterprise Miner PFD SAS Rapid Predictive Modeler & SAS SEMMA 5 SEMMA SAS Rapid Predictive Modeler SAS Rapid Predictive Modeler SAS Enterprise Gui FACT SHEET SAS ENTERPRISE MINER 7.1 SAS SAS Enterprise Miner SAS SAS????? SAS Enterprise Miner SAS Analytics SAS SAS Enterprise Miner GUI SAS Enterprise Miner PFD SAS Rapid Predictive Modeler & SAS SEMMA

More information

リスク分析・シミュレーション

リスク分析・シミュレーション はじめての Crystal Ball 操作マニュアル編 株式会社構造計画研究所 164-0012 東京都中野区中央 4-5-3 TEL:03-5342-1090 Copyright 2012 KOZO KEIKAKU ENGINEERING Inc. All Rights Reserved. はじめに 本マニュアルは 初めて Crystal Ball を操作する方向けに作成された入門マニュアルです

More information

FASS ベーシックサンプル問題 財務モデリング Financial Modeling 日本 CFO 協会 FASS 運営委員会 0

FASS ベーシックサンプル問題 財務モデリング Financial Modeling 日本 CFO 協会 FASS 運営委員会 0 FASS ベーシックサンプル問題 財務モデリング Financial Modeling 日本 CFO 協会 FASS 運営委員会 0 . 財務モデリングについて説明した下の文章のうち 適切でないものはどれか a) 財務モデリングとは Excel のスプレッドシートを活用した数値処理 である b) 一般の電卓では不可能な数値処理を行うことが財務モデリングを行う目的の一つでである c) 財務会計上の定型的処理も財務モデリングによって行うことは

More information

MAAB でのプレゼンテーション に関する提案

MAAB でのプレゼンテーション に関する提案 J-MAAB 2005 10 27 (1) OBD (2) (3) (4) OEM (5) MAAB J-MAAB 1. MBD (Model-Based Development) MBD Process 2. MAAB MAAB 3. J (Japan) -MAAB J-MAAB 4. J-MAAB WG WG 5. MBD Virtual World *SILS Rapid *HILS Real

More information

5シンポジウム2001予稿小野寺011121

5シンポジウム2001予稿小野寺011121 PAV Data Systems Ltd. H/W,S/W PAV Data Systems Ltd. Windermere 6000 Six Key Sales Regions Europe - North America - South America - Middle East - Africa - Asia Pacific SkyCom SkyCell SkyNet The SkyCom &

More information

untitled

untitled IT IT 2014 B to B B to C 10 IT IT IT (CDS) Electronic Commerce, e-commerce B to B (Business to Business) B to C (Business to Consumer) C to C (Consumer to Consumer) O2O (Online to Offline) IT IT IT IT

More information

サイバネットニュース No.115

サイバネットニュース No.115 Fall 2005 no.115 C O N T E N T S 1 2 2 3 4 4 5 5 6 7 8 9 10-11 12-14 15 16 CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE CAE BP 1 Just-in-TimeIT epiplex Epiance4.7 CAD/CAE ERPWindows

More information

カルマンフィルターによるベータ推定( )

カルマンフィルターによるベータ推定( ) β TOPIX 1 22 β β smoothness priors (the Capital Asset Pricing Model, CAPM) CAPM 1 β β β β smoothness priors :,,. E-mail: koiti@ism.ac.jp., 104 1 TOPIX β Z i = β i Z m + α i (1) Z i Z m α i α i β i (the

More information

HIS-CCBASEver2

HIS-CCBASEver2 Information Access Interface in the Immersive Virtual World Tetsuro Ogi, *1*2*3 Koji Yamamoto, *3*4 Tadashi Yamanouchi *3 and Michitaka Hirose *2 Abstract - In this study, in order to access database server

More information

Tf dvi

Tf dvi /Review A Trial of Establishing an Approach of Hisashi TANAKA Abstract This paper is trying to establish an approach of the Integrated Risk Management which is focusing especially on the methodology and

More information

Microsoft Word doc

Microsoft Word doc . 正規線形モデルのベイズ推定翠川 大竹距離減衰式 (PGA(Midorikawa, S., and Ohtake, Y. (, Attenuation relationships of peak ground acceleration and velocity considering attenuation characteristics for shallow and deeper earthquakes,

More information

Salesforce DX.key

Salesforce DX.key Salesforce DX とは? Salesforceの開発生産性向上のための新機能 Mitsuhiro Okamoto Senior Developer Evangelist Trail blazer @mitsuhiro mokamoto@salesforce.com Forward-Looking Statements Statement under the Private Securities

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

次元圧縮法を導入したクエリに基づくバイクラスタリング 情報推薦への応用 武内充三浦功輝岡田吉史 ( 室蘭工業大学 ) 概要以前, 我々はクエリに基づくバイクラスタリングを用いた情報推薦手法を提案した. 本研究では, 新たに推薦スコアが非常に良く似たユーザまたはアイテムを融合する次元圧縮法を導入した. 実験として, 縮減前と縮減後のデータセットのサイズとバイクラスタ計算時間の比較を行う. キーワード

More information

インテル(R) Visual Fortran コンパイラ 10.0

インテル(R) Visual Fortran コンパイラ 10.0 インテル (R) Visual Fortran コンパイラー 10.0 日本語版スペシャル エディション 入門ガイド 目次 概要インテル (R) Visual Fortran コンパイラーの設定はじめに検証用ソースファイル適切なインストールの確認コンパイラーの起動 ( コマンドライン ) コンパイル ( 最適化オプションなし ) 実行 / プログラムの検証コンパイル ( 最適化オプションあり ) 実行

More information

2. 設定画面から 下記の項目について入力を行って下さい Report Type - 閲覧したい利用統計の種類を選択 Database Usage Report: ご契約データベース毎の利用統計 Interface Usage Report: 使用しているインターフェイス * 毎の利用統計 * 専用

2. 設定画面から 下記の項目について入力を行って下さい Report Type - 閲覧したい利用統計の種類を選択 Database Usage Report: ご契約データベース毎の利用統計 Interface Usage Report: 使用しているインターフェイス * 毎の利用統計 * 専用 EBSCOadmin 利用統計設定方法 EBSCOadmin 内の Report & Statistics 機能をご利用頂くことで セッション別 発信元の IP アドレス別 デー タベース別 最も多く検索された雑誌タイトルなどに限定して ユーザーのデータベース利用頻度を把握すること ができます ここでは 基本的なデータベースの利用統計レポートの作成方法をご説明します 利用統計を設定する (=Standard

More information

XJTAG

XJTAG LDRA/ T-VEC/ MetaEdit+ Domain Specific Modeling Ashling/Jtag ARC SmartCards LAUTERBACH /Jtag ARM PowerPC K MIPS XJTAG HW Domain-Specific Modeling Domain-Specific Modeling Software Technology 30 Copyright

More information

5.政府保証民間ローン(FFEL)と政府直接ローン(FDSL)の状況(アメリカにおける奨学制度に関する調査報告書)

5.政府保証民間ローン(FFEL)と政府直接ローン(FDSL)の状況(アメリカにおける奨学制度に関する調査報告書) 5. 政府保証民間ローン (FFEL) と政府直接ローン (FDSL) の状況 1. 連邦学生支援の実施主体 実施状況連邦学生支援は, 教育省の学生支援局 (Federal Student Aid Office) が所管している 連邦教育省の組織は図 9 の通りである 図 9 連邦教育省の組織 出典連邦教育省ホームページより (2009 年 11 月現在 ) (http://www.ed.gov/about/offices/or/index.html?src=ln)

More information

Microsoft PowerPoint - 03Weka.ppt

Microsoft PowerPoint - 03Weka.ppt 情報意味論 (3) Weka の紹介 WEKA: Explorer WEKA: Experimenter Preslav Nakov (October 6, 2004) http://www.sims.berkeley.edu/courses/is290-2/f04/lectures/lecture11.ppt WEKA: 使ってみよう Eibe Frank http://prdownloads.sourceforge.net/weka/weka.ppt

More information

SH Mobile Consortium Day

SH Mobile Consortium Day 2006 7 20 BTO 2 Java TM 3 DoCoMo, KDDI (Software) Sprint, Nextel (PCB Architecture) Vodafone, Hutchinson (System Design) Orange, T-Mobile (Software Design) Telefonica (ID Design) Verizon, Cingular, China

More information

Microsoft Word - å“Ÿåłžå¸°173.docx

Microsoft Word - å“Ÿåłžå¸°173.docx 回帰分析 ( その 3) 経済情報処理 価格弾力性の推定ある商品について その購入量を w 単価を p とし それぞれの変化量を w p で表 w w すことにする この時 この商品の価格弾力性 は により定義される これ p p は p が 1 パーセント変化した場合に w が何パーセント変化するかを示したものである ここで p を 0 に近づけていった極限を考えると d ln w 1 dw dw

More information

9_18.dvi

9_18.dvi Vol. 49 No. 9 3180 3190 (Sep. 2008) 1, 2 3 1 1 1, 2 4 5 6 1 MRC 1 23 MRC Development and Applications of Multiple Risk Communicator Ryoichi Sasaki, 1, 2 Yuu Hidaka, 3 Takashi Moriya, 1 Katsuhiro Taniyama,

More information

Management Of Technology 1

Management Of Technology 1 Management Of Technology Management Of Technology 1 1.1 1.2 1.2.1 1.2.2 1.3 1.4 [ ] 2.1 2.1.1 2.1.2 2.2 2.3 [ : ] 3.1 3.2 4.1 4.2 5.1 5.2 6.1 6.1.1 6.1.2 6.2 2 7.1 7.2 7.3 [ ] 8.1 8.2 8.2.1 8.2.2 8.3 8.4

More information

Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 s

Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 s BR003 Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 sampsi 47 mwp-044 sdtest 54 mwp-043 signrank/signtest

More information

情報工学概論

情報工学概論 確率と統計 中山クラス 第 11 週 0 本日の内容 第 3 回レポート解説 第 5 章 5.6 独立性の検定 ( カイ二乗検定 ) 5.7 サンプルサイズの検定結果への影響練習問題 (4),(5) 第 4 回レポート課題の説明 1 演習問題 ( 前回 ) の解説 勉強時間と定期試験の得点の関係を無相関検定により調べる. データ入力 > aa

More information

text.dvi

text.dvi Abstract JP Morgan CreditMetrics (1) () (3) (4) 1 3 3 4 4 5 10 6 16 1 1 BIS 1 3 1 BIS 1 BIS 1 3 ALM (1) Value at Risk () (3) RAROC (Risk Ajusted Return On Capital) (4) 3 5 6 31 99% (= p ) ~x X Prf~x Xg

More information

外部SQLソース入門

外部SQLソース入門 Introduction to External SQL Sources 外部 SQL ソース入門 3 ESS 3 ESS : 4 ESS : 4 5 ESS 5 Step 1:... 6 Step 2: DSN... 6 Step 3: FileMaker Pro... 6 Step 4: FileMaker Pro 1. 6 Step 5:... 6 Step 6: FileMaker Pro...

More information

01-._..

01-._.. Journal of the Faculty of Management and Information Systems, Prefectural University of Hiroshima 2014 No.6 pp.43 56 43 The risk measure for resilience in the inventory control system Nobuyuki UENO, Yu

More information

Presentation Title

Presentation Title エンタープライズ向けアプリケーション開発の例 MathWorks Japan アプリケーションエンジニアリング部アプリケーションエンジニア吉田剛士 2014 The MathWorks, Inc. 1 アジェンダ 低コスト 低リスクなプロトタイプ開発 デモンストレーション Amazon Redshift 上の CAN データの集約 拡張性とアプリケーション展開 まとめ 2 MATLAB の特徴 Next

More information

PowerPoint

PowerPoint 2011 12 6PTC Live TechForum TOKYO manji@rd.denso.co.jp 1/ 52 1949 12 16 1,874 ( ) 1 9,457 3 1,315 ( ) 38,318 123,165 ( ) 2011 3 31 Gr. Gr. Gr. Gr. Gr. PF 2/ 52 1 2 3 4PMT 5 Integrity 6 7 8 1/2 3/ 52 OEM

More information

Microsoft PowerPoint 古川杉本SASWEB用プレゼン.ppt

Microsoft PowerPoint 古川杉本SASWEB用プレゼン.ppt ロジスティックモデルと ROC AUC 分析を 組み合わせた検査性能の評価と 疫学基本モデル評価方法 古川敏仁 杉本典子株式会社バイオスタティスティカルリサーチ Test Perforance Evaluation in Epideiological Basic Model Using ROC AUC with logistic regression Toshihito Furukawa, Noriko

More information

Microsoft Word _VBAProg1.docx

Microsoft Word _VBAProg1.docx 1. VBA とマクロ 1.1 VBA とは VBA(Visual Basic for Applications) は 1997 年に Microsoft 社がマクロを作成するために開発された言語である Windows 対応のアプリケーションを開発するためのプログラミング言語 Visual Basic をもとにしているため 次のような特徴がある 1 VBA は Excel Word, Access,

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

More information

untitled

untitled CAPEC, 2009 6 16 June 16, 2009 Page 1 CAPEC EMS 1. EMS USA EU 2. EMS 3. EMS 4. EMS 5. CAPEC 6. EMS June 16, 2009 Page 2 EMS EC 3 EMS EMS EMS EMS CAPEC EMS CAPEC EMS EMS June 16, 2009 Page 3 EU EU EC 1997/67/EC

More information

スライド 1

スライド 1 Monthly Research 静的情報に基づいたマルウェア判定指標の検討 Fourteenforty Research Institute, Inc. 株式会社 FFRI http://www.ffri.jp Ver2.00.01 Agenda 背景と目的 実験概要 実験結果 評価及び考察 まとめ 2 背景と目的 マルウェアの急増に伴い 従来のパターンマッチングによる検知が困難になっている そのため

More information

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv /mokamoto @mitsuhiro in/mitsuhiro Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties,

More information

IPSJ SIG Technical Report Vol.2012-HCI-149 No /7/20 1 1,2 1 (HMD: Head Mounted Display) HMD HMD,,,, An Information Presentation Method for Weara

IPSJ SIG Technical Report Vol.2012-HCI-149 No /7/20 1 1,2 1 (HMD: Head Mounted Display) HMD HMD,,,, An Information Presentation Method for Weara 1 1,2 1 (: Head Mounted Display),,,, An Information Presentation Method for Wearable Displays Considering Surrounding Conditions in Wearable Computing Environments Masayuki Nakao 1 Tsutomu Terada 1,2 Masahiko

More information

A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi

A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi ODA Department of Human and Mechanical Systems Engineering,

More information

Tran Thi Van Anh

Tran Thi Van Anh Title Kobe University Repository : Kernel アジア債券市場整備の取り組みと債券市場の現状について (To Which Stage Has Asian Bond Market Achieved?) Author(s) 三重野, 文晴 / 清水, 聡 / [ トラン, ティンバンアン ] Citation 国民経済雑誌,204(6):25-43 Issue date

More information

したがって このモデルではの長さをもつ潜在履歴 latent history が存在し 同様に と指標化して扱うことができる 以下では 潜在的に起こりうる履歴を潜在履歴 latent history 実際にデ ータとして記録された履歴を記録履歴 recorded history ということにする M

したがって このモデルではの長さをもつ潜在履歴 latent history が存在し 同様に と指標化して扱うことができる 以下では 潜在的に起こりうる履歴を潜在履歴 latent history 実際にデ ータとして記録された履歴を記録履歴 recorded history ということにする M Bayesian Inference with ecological applications Chapter 10 Bayesian Inference with ecological applications 輪読会 潜在的な事象を扱うための多項分布モデル Latent Multinomial Models 本章では 記録した頻度データが多項分布に従う潜在的な変数を集約したものと考えられるときの

More information

untitled

untitled Oracle RAC 10gRAC Agenda 1. Why Oracle on Dell Dell Oracle on Linux Dell Oracle Dell Oracle 2. Oracle Clustering Solution Oracle Real Application Cluster 3. Case Study 4. Oracle RAC Solution on Dell Oracle

More information

テレビ番組による相互交流

テレビ番組による相互交流 Abstract: Import and Export of TV programs in Japan The TV programs for which contracts were concluded for export during fiscal 2001 included: Number of programs (number of titles) = 1,675 programs (series

More information

fiš„v8.dvi

fiš„v8.dvi (2001) 49 2 333 343 Java Jasp 1 2 3 4 2001 4 13 2001 9 17 Java Jasp (JAva based Statistical Processor) Jasp Jasp. Java. 1. Jasp CPU 1 106 8569 4 6 7; fuji@ism.ac.jp 2 106 8569 4 6 7; nakanoj@ism.ac.jp

More information

SICE東北支部研究集会資料(2017年)

SICE東北支部研究集会資料(2017年) 307 (2017.2.27) 307-8 Deep Convolutional Neural Network X Detecting Masses in Mammograms Based on Transfer Learning of A Deep Convolutional Neural Network Shintaro Suzuki, Xiaoyong Zhang, Noriyasu Homma,

More information

kubostat2017b p.1 agenda I 2017 (b) probability distribution and maximum likelihood estimation :

kubostat2017b p.1 agenda I 2017 (b) probability distribution and maximum likelihood estimation : kubostat2017b p.1 agenda I 2017 (b) probabilit distribution and maimum likelihood estimation kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2017 11 14 : 2017 11 07 15:43 1 : 2 3? 4 kubostat2017b (http://goo.gl/76c4i)

More information

workshop Eclipse TAU AICS.key

workshop Eclipse TAU AICS.key 11 AICS 2016/02/10 1 Bryzgalov Peter @ HPC Usability Research Team RIKEN AICS Copyright 2016 RIKEN AICS 2 3 OS X, Linux www.eclipse.org/downloads/packages/eclipse-parallel-application-developers/lunasr2

More information

PowerPoint Presentation

PowerPoint Presentation Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such

More information

要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する SAS プログラムを紹介する キーワード :SGPLOT, フローチャート, 可視化 2

要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する SAS プログラムを紹介する キーワード :SGPLOT, フローチャート, 可視化 2 SAS プログラムの可視化 - SAS プログラムステップフローチャート生成プログラムの紹介 - 福田裕章 1 ( 1 MSD 株式会社 ) Visualization of SAS programs Hiroaki Fukuda MSD K.K. 要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する

More information

イントロ

イントロ 2013 DISCLOSURE CONTENTS A W A B A N K 2 0 1 3 AWA BANK REPORT 2013 AWA BANK REPORT 2013 200 192 195 194 188 150 140 147 100 120 50 80 73 61 89 0 40 0 100 90 80 60 40 47 41 36 20 0 8,000 6,000 4,000

More information

fiš„v6.dvi

fiš„v6.dvi (2001) 49 2 305 315 EXCEL E-Decomp 1 2001 4 26 2001 7 27 E-Decomp E-Decomp Microsoft EXCEL 1 Web Web Decomp 2 R R-(D)COM Interface Web Decomp Decomp EXCEL. 1. E-Decomp E-Decomp Microsoft EXCEL (1997) Web

More information

Symantec AntiVirus の設定

Symantec AntiVirus の設定 CHAPTER 29 Symantec AntiVirus エージェントを MARS でレポートデバイスとしてイネーブルにするためには Symantec System Center コンソールをレポートデバイスとして指定する必要があります Symantec System Center コンソールはモニタ対象の AV エージェントからアラートを受信し このアラートを SNMP 通知として MARS に転送します

More information

PowerPoint Presentation

PowerPoint Presentation ディープラーニングの 実践的な適用ワークフロー MathWorks Japan テクニカルコンサルティング部縣亮 2015 The MathWorks, Inc. 1 アジェンダ ディープラーニングとは?( おさらい ) ディープラーニングの適用ワークフロー ワークフローの全体像 MATLAB によるニューラルネットワークの構築 学習 検証 配布 MATLAB ではじめるメリット 試行錯誤のやりやすさ

More information

Microsoft Word - ㅎ㇤ㇺå®ı璃ㆨAIã†®æŁ°ç’ƒ.docx

Microsoft Word - ㅎ㇤ㇺå®ı璃ㆨAIã†®æŁ°ç’ƒ.docx ベイズの定理から AI の数理 ベイズ更新とロジステック曲線について 松本睦郎 ( 札幌啓成高等学校講師 ) Episode ロジステック曲線 菌やウイルスの増殖数や 人口増加等を表現する曲線の一つにロジステック曲線があります 例 シャーレの中で培養された大腸菌の数について考察する シャーレ内に栄養が十分に存在するとき 菌は栄養を吸収しながら 一定時間ごとに細胞分裂をして増 殖する 菌の数 u u(t)

More information

4.9 Hausman Test Time Fixed Effects Model vs Time Random Effects Model Two-way Fixed Effects Model

4.9 Hausman Test Time Fixed Effects Model vs Time Random Effects Model Two-way Fixed Effects Model 1 EViews 5 2007 7 11 2010 5 17 1 ( ) 3 1.1........................................... 4 1.2................................... 9 2 11 3 14 3.1 Pooled OLS.............................................. 14

More information

Oracle Database 10gのOLAP Option

Oracle Database 10gのOLAP Option Oracle Database 10g OLAP Option OLAP Option 2005 3 Oracle Database 10g OLAP Option... 3 Oracle Business Intelligence... 4... 4... 5 Oracle Business Intelligence Beans... 5 OracleBI Discoverer... 6 OracleBI

More information

0 スペクトル 時系列データの前処理 法 平滑化 ( スムージング ) と微分 明治大学理 学部応用化学科 データ化学 学研究室 弘昌

0 スペクトル 時系列データの前処理 法 平滑化 ( スムージング ) と微分 明治大学理 学部応用化学科 データ化学 学研究室 弘昌 0 スペクトル 時系列データの前処理 法 平滑化 ( スムージング ) と微分 明治大学理 学部応用化学科 データ化学 学研究室 弘昌 スペクトルデータの特徴 1 波 ( 波数 ) が近いと 吸光度 ( 強度 ) の値も似ている ノイズが含まれる 吸光度 ( 強度 ) の極大値 ( ピーク ) 以外のデータも重要 時系列データの特徴 2 時刻が近いと プロセス変数の値も似ている ノイズが含まれる プロセス変数の極大値

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

ROC lift chart 2 Copyright (C) 2008 i-library MOT 2

ROC lift chart 2 Copyright (C) 2008 i-library MOT 2 Data Mining --- Weka Weka MBA http://tech-d.blogspot.com/ Weka Weka Weka Weka http://tech-d.blogspot.com/ Labels & Links Weka Copyright (C) 2008 i-library MOT 1 1. 2. 2-1 2-2 2-3 2-4 3. 4. 5. 1 ROC lift

More information

12_11B-5-00-omote※トンボ付き.indd

12_11B-5-00-omote※トンボ付き.indd Enquiry CEPA website (http://www.tid.gov.hk/english/cepa/index.html) provides information on the content and implementation details of various CEPA liberalisation and facilitative measures, including the

More information

背景 1 / Reprinted with permission from paper c 2013 SAE International.

背景 1 / Reprinted with permission from paper c 2013 SAE International. 車載グラフィックメータ開発プロセス革新への挑戦 ~ REMO ZIPC による 3D HMI 開発事例 ~ 西川良一株式会社デンソー情報通信システム開発部 背景 1 / 17 2008 2009 2010 2011 2012 2013 Reprinted with permission from paper 2013-01 01-04250425 c 2013 SAE International.

More information

memo

memo 数理情報工学特論第一 機械学習とデータマイニング 4 章 : 教師なし学習 3 かしまひさし 鹿島久嗣 ( 数理 6 研 ) kashima@mist.i.~ DEPARTMENT OF MATHEMATICAL INFORMATICS 1 グラフィカルモデルについて学びます グラフィカルモデル グラフィカルラッソ グラフィカルラッソの推定アルゴリズム 2 グラフィカルモデル 3 教師なし学習の主要タスクは

More information

Presentation Title

Presentation Title センサーデータ解析と機械学習 ~ 振動データからの異常検出 ~ MathWorks Japan アプリケーションエンジニアリング部 ( テクニカルコンピューティング ) 太田英司 2015 2014 The MathWorks, Inc. 1 構造ヘルスモニタリング センサーとコンピュータにより構造物の健全性を自動監視する 老朽化する構造物 インフラの数 人手のみの監視による限界 人間では検知できない故障や異常の予兆

More information

3_23.dvi

3_23.dvi Vol. 52 No. 3 1234 1244 (Mar. 2011) 1 1 mixi 1 Casual Scheduling Management and Shared System Using Avatar Takashi Yoshino 1 and Takayuki Yamano 1 Conventional scheduling management and shared systems

More information

Statistical inference for one-sample proportion

Statistical inference for one-sample proportion RAND 関数による擬似乱数の生成 魚住龍史 * 浜田知久馬東京理科大学大学院工学研究科経営工学専攻 Generating pseudo-random numbers using RAND function Ryuji Uozumi * and Chikuma Hamada Department of Management Science, Graduate School of Engineering,

More information

浜松医科大学紀要

浜松医科大学紀要 On the Statistical Bias Found in the Horse Racing Data (1) Akio NODA Mathematics Abstract: The purpose of the present paper is to report what type of statistical bias the author has found in the horse

More information

FINANCIAL FACT BOOK 2002 CONTENTS CONTENTS Sales Data Net Sales Sales Composition Sales by Region Profit Data Cost Composition & Operating Income/Net

FINANCIAL FACT BOOK 2002 CONTENTS CONTENTS Sales Data Net Sales Sales Composition Sales by Region Profit Data Cost Composition & Operating Income/Net FINANCIAL FACT BOOK 2002 FINANCIAL FACT BOOK 2002 CONTENTS CONTENTS Sales Data Net Sales Sales Composition Sales by Region Profit Data Cost Composition & Operating Income/Net Sales Gross Profit Margin

More information

情報分野のアクセシビリティ標準について

情報分野のアクセシビリティ標準について 情報分野のアクセシビリティ標準について 経済産業省国際電気標準課 小出啓介 Agenda 1. 障害者白書 2. JTC 1/SC 35 で開発しているアクセシビリティ関連規格の紹介 3. 映像字幕事業 (ISO/IEC 20071-23) の取り組みの紹介 4. JIS X 8341-3 の改正について 5. Web Accessibility, BSI Code of Practice 規格の開発と国内対応について

More information

HIGIS 3/プレゼンテーション資料/J_GrayA.ppt

HIGIS 3/プレゼンテーション資料/J_GrayA.ppt OSS で実現するビジネスロジックの見える化と生産性向上 ~ JBoss BRMS の特徴とメリット ~ 2015/5/23 株式会社日立ソリューションズ社会イノベーション基盤本部第 4 部岡本雅幸 Hitachi Solutions, Ltd. 2015. All rights reserved. Contents 1.BRMS のご紹介 2.BRMS デモ 3. まとめ Hitachi Solutions,

More information