[1] B =b 1 b n P (S B) S S O = {o 1,2, o 1,3,, o 1,n, o 2,3,, o i,j,, o n 1,n } D = {d 1, d 2,, d n 1 } S = O, D o i,j 1 i
|
|
|
- きみお ぜんじゅう
- 7 years ago
- Views:
Transcription
1 1,a) 2,b) 3,c) 1,d) CYK ( 1 ) ( 2 ) 1 [1] 2 [2] [3] 1 Graduate School of Information Science, Nagoya University, Japan 2 Information Technology Center, Nagoya University, Japan 3 Information & Communications, Nagoya University, Japan a) [email protected] b) [email protected] c) [email protected] d) [email protected] [4], [5], [6], [7], [8] [9], [10], [11], [12], [13] c 2015 Information Processing Society of Japan 1
2 [1] B =b 1 b n P (S B) S S O = {o 1,2, o 1,3,, o 1,n, o 2,3,, o i,j,, o n 1,n } D = {d 1, d 2,, d n 1 } S = O, D o i,j 1 i < j n 2 b i b j b i o i,j = 1 o i,j = 0 d i b i S = O, D P (S B) (1) 式 (2) 低 入力 語順整序 係り受け解析 出力 1 入力文の語順の適切さ 入力 式 (1) 出力 (1) (3) 入力 係り受け解析 語順整序 出力 Fig. 1 Relationships among formulas (1) to (3). P (S B) = P (O, D B) 高 式 (3) = {P (O B) P (D O, B)} α (1) {P (D B) P (O D, B)} 1 α (0 α 1) (1) (2) (3) *1 α (0 α 1) P (O, D B) = P (O B) P (D O, B) (2) P (O, D B) = P (D B) P (O D, B) (3) (2) (3) P (O, D B) 1 (1) (3) S = O, D (2) P (O, D B) (3) (2) (3) (1) P (O, D B) α (1) (3) y = a x 0 a 1 0 x 1 (1) α (2) (1) 2 *1 c 2015 Information Processing Society of Japan 2
3 o i,j 2 d i *2 P (O B) = n 1 n i=1 j=i+1 P (o i,j B) (4) n 1 P (D O, B) = P (d i O, B) (5) i=1 n 1 P (D B) = P (d i B) (6) i=1 n 1 P (O D, B) = n i=1 j=i+1 P (o i,j D, B) (7) P (o i,j B) B b i b j o i,j P (d i O, B) B O b i d i P (d i B) B b i d i P (o i,j D, B) D B b i b j o i,j P (o i,j D, B) [2] P (o i,j B) P (o i,j D, B) P (d i O, B) [14] P (d i B) P (d i O, B) 3.2 B O D S O D CYK P (O, D B) O D ( 1 ) *2 o i,j d i O D [14] ( 2 ) ( 3 ) *3 (1) (3) D (2) (3) O CYK CYK n n n M i,j (1 i j n) 4 i j M i,j B i,j = b i b j, O i,j D i,j argmax Si,j P (S i,j B i,j ) S i,j d x (i x j) S 1,3 = d 3 2 d3 1 d0 3 b 2 1 b 1 2 b 3 {d 3 1, d3 2, d0 3 } d y x b x b y d 0 j b j 4 6 M i,i d 0 i 7 15 M i,i M i,j M i,j concatreorder M i,k M k+1,j C i,j 13 b i b j argmax Si,j C i,j P (S i,j B i,j ) M i,j *3 2 2 c 2015 Information Processing Society of Japan 3
4 1: input B 1,n := b 1 b n // 2: set M i,j := null (1 i j n) // 3: set C i,j := null (1 i j n) // 4: for i := 1 to n do 5: M i,i := d 0 i 6: end for 7: for d := 1 to n 1 do 8: for i := 1 to n d do 9: j := i + d 10: for k := i to j 1 do 11: C i,j := C i,j concatreorder(m i,k, M k+1,j ) 12: end for 13: M i,j := argmax Si,j C i,j P (S i,j B i,j ) 14: end for 15: end for 16: return M 1,n Fig. 2 2 Word reordering algorithm. 1: function concatreorder(s 1, S 2 ) 2: begin 3: set C := null // 4: set z := last(s 2 ) // last(s 2 ) S 2 5: 6: // 7: // 8: // S 1 b z S 1 9: S 1 := changelastdep(z, S 1) 10: // 11: C := { S 1 S 2 } 12: 13: // 14: for each d {d y x y = z, d y x S 2 } do 15: // S 2 d S2 l Sr 2 16: (S2 l, Sr 2 ) := divide(d, S 2) 17: C := C { S2 l S 1 Sr 2 } 18: end for 19: 20: return C 21: end 3 Fig. 3 concatreorder Function: concatreorder. M 1,n 16 M 1,n 3 concatreorder concatreorder 2 S 1 (= M i,k ) S 2 (= M k+1,j ) M i,j C 2 9 S 1 S 2 changelastdep S 1 S 2 b z S 1 S 1 = d i d i+1 d k 1 d 0 k changelastdep(s 1, z) d i d i+1 d k 1 d z k 11 2 i j : : 文節 i から j までの部分文節列に対する語順と係り受けの最尤構造 文節 i が j より前に位置し,i が j に係ることを表す. 例えば, は, 意味する. Fig を 下記の構造候補の中でが最大となる構造をに書き込む とから生成される候補 連結プロセスにおいて生成 候補 1: 語順変更プロセスにおいて生成 候補 2: とから生成される候補 連結プロセスにおいて生成 候補 3: 語順変更プロセスにおいて生成 候補は生成されない Execution example of our search algorithm. S 1 S 2 S 1 S 2 S 1 S 2 M i,j C 0 ( 1 ) ( 2 ) S 1 S S 2 S S 1 17 S2 l S 1 Sr 2 C S 2 S 2 2 concatreorder concat CYK concat concatreorder n = M 1,1, M 2,2, M 3,3, M 4,4, M 1,2, M 2,3, M 3,4, M 1,3 M 2,4 4 M 2, concatreorder 3 concatreorder(m 2,2, M 3,4 ) c 2015 Information Processing Society of Japan 4
5 M 2,2 d 0 2 d4 2 M 2,2 M 3,4 1 京大テキストコーパス concatreorder(m 2,2, M 3,4 ) M 2,2 b4 3 2 concatreorder(m 2,3, M 4,4 ) (1) 1 文の取り出し 新聞記事文 3 concatreorder(m 2,3, M 4,4 ) 3 3 P (S 2,4 B) = P (O 2,4, D 2,4 B 2,4 ) M 2,4 No Yes (4) 他に異なる語順があるか? No (2) ランダムな語順変更 (3) 母語話者が書きそうか? Yes 語順変更後の読みにくい文 作業者が判断 4. 採用 Fig. 5 新聞記事文 : 評価用データ 5 Construction procedure of evaluation data. 4.1 [15] Version 2 5 ( 1 ) 1 * (1) (3) *4 消費税増税が国会を通った後でも 世論調査では 増税反対が まず, 大勢だ に係る 3 つの部分構造 ( 青太線枠 ) の順序を変更. 次に, 通った に係る 2 つの部分構造 ( 赤点線枠 ) の順序を変更. 語順変更後の読みにくい文 : 大勢だ 増税反対が世論調査では国会を消費税増税が通った後でも大勢だ Fig. 6 6 Example of random reordering. ( 2 ) 3.2 (1) (3) 6 ( 3 ) (2) 1 Yes (1) No (4) [1] ( 4 ) (2) Yes (2) c 2015 Information Processing Society of Japan 5
6 1 Table 1 Size of evaluation data. 2 Table 2 Experimental results for each set ,906 No (1) (1) α α α 1 5 α 2 α 0.1 α α α α (4) (7) ,976 [16] [2] [14] [2] 2 CaboCha[17] [2] P (o i,j D, B) α % (3,790/4,565) 32.73% (36/110) % (4,308/5,139) 29.09% (32/110) % (3,862/4,636) 32.73% (36/110) % (3,496/4,269) 28.83% (32/111) % (4,018/4,623) 31.53% (35/111) 3 Table 3 Experimental results (word reordering) % (19,474/23,232) 30.98% (171/552) % (19,140/23,232) 26.99% (149/552) % (19,365/23,232) 26.63% (147/552) 76.78% (17,838/23,232) 0% (0/552) 1 P (d i O, B) 2 CaboCha 4.3 α 2 1 α α α *5 (p < 0.05) 2 2 (p > 0.05) 1 (p < 0.05) 1 7 *5 c 2015 Information Processing Society of Japan 6
7 例 1 入力文 麻薬売買にも手を越境前の生活費を得るため出す 語順整序結果 越境前の生活費を得るため麻薬売買にも手を出す 例 2 入力文 生産量は少なくなるが高品質のブドウをブドウの樹液を濃縮し収穫するためだ 語順整序結果 生産量は少なくなるがブドウの樹液を濃縮し高品質のブドウを収穫するためだ 例 3 入力文 コペンハーゲンからの報道によるとチェチェン紛争への軍事介入を理由に七日デンマーク政府はロシアとの昨年九月に結んだ軍事協力協定を一時的に凍結した 語順整序結果 コペンハーゲンからの報道によるとデンマーク政府は七日チェチェン紛争への軍事介入を理由に昨年九月に結んだロシアとの軍事協力協定を一時的に凍結した 7 Fig. 7 Examples of sentences correctly reordered by our 4 Table 4 method. 2 Agreement rates calculated separately for the case that the word order between two bunsetsus in the input sentence is appropriate and the case that the order is inappropriate. R F T R T T 66.30% (3,576/5,394) 88.77% (15,834/17,838) % (2,840/5,394) 91.38% (16,300/17,838) % (2,787/5,394) 92.94% (16,578/17,838) R F T 2 R T T 2 R F T 入力文 亡くなる前に演出プランが出来ていたため演出が飯沢プラン通り行われた 本手法の出力結果 演出プランが出来ていたため飯沢プラン通り亡くなる前に演出が行われた 正解文 亡くなる前に演出プランが出来ていたため飯沢プラン通り演出が行われた 8 Fig. 8 Example of sentences incorrectly reordered by our method CaboCha 8 α 2 (3) α α *6 *6 α 0.01 α c 2015 Information Processing Society of Japan 7
8 Table 5 5 Experimental results (dependency parsing) % (3,631/4,354) 40.04% (221/552) % (3,690/4,354) 36.78% (203/552) % (3,748/4,354) 37.50% (207/552) α [14] 5 5 p > 0.05 p < α 4 (1) α α α α α α = Table 6 6 α Word reordering results by our method using the optimal α. 2 (α = 0.66) 84.12% (19,542/23,232) 31.16% (172/552) 3 p < 0.05 α 2 2 α 1 2 α α 5.3 α (1) α 3.1 (2) (3) (2) (1) α 4 α 4 ( 1 ) ( 2 ) ( 3 ) 4.1 (2) (1) 552 ( 4 ) (3) α c 2015 Information Processing Society of Japan 8
9 7 4 Table 7 Experimental results on four kinds of data which have different word order readability. 2 α 2 100% (23,232/23,232) 100% (552/552) % (20,098/23,232) 40.40% (223/552) 76.78% (17,838/23,232) 0% (0/552) % (19,542/23,232) 31.16% (172/552) 74.46% (17,298/23,232) 18.12% (100/552) % (19,184/23,232) 32.07% (177/552) 60.40% (14,032/23,232) 0% (0/552) % (18,671/23,232) 24.46% (135/552) α α 3 6. CYK No (B) No [1] 7 (2009). [2] Vol. 7, No. 4, pp (2000). [3] Vol. 45, No. 5, pp (2004). [4] Filippova, K. and Strube., M.: Generating constituent order in German clauses, In Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics (ACL2007), pp (2007). [5] Harbusch, K., Kempen, G., van Breugel, C. and Koch, U.: A generation-oriented workbench for performance grammar: Capturing linear order variability in German and Dutch, In Proceedings of the 4th International Natural Language Generation Conference (INLG2006), pp (2006). [6] Kruijff, G. M., Kruijff-Korbayová, I., Bateman, J. and Teich, E.: Linear order as higher-level decision: Information structure in strategic and tactical generation, In Proceedings of the 8th European Workshop on Natural Language Generation (ENLG2001), pp (2001). [7] Ringger, E., Gamon, M., Moore, R. C., Rojas, D., Smets, M. and Corston-Oliver, S.: Linguistically informed statistical models of constituent structure for ordering in sentence realization, In Proceedings of the 20th International Conference on Computational Linguistics (COL- ING2004), pp (2004). [8] Shaw, J. and Hatzivassiloglou, V.: Ordering among premodifiers, In Proceedings of the 37th Annual Meeting of the Association for Computational Linguistics (ACL 99), pp (1999). [9] Goto, I., Utiyama, M. and Sumita, E.: Post-ordering by parsing for Japanese-English statistical machine translation, In Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics (ACL2012), pp (2012). [10] Elming, J.: Syntactic reordering integrated with phrasebased SMT, In Proceedings of the 22nd International Conference on Computational Linguistics (COL- ING2008), pp (2008). [11] Ge, N.: A direct syntax-driven reordering model for phrase-based machine translation, In Proceedings of Human Language Technologies: The 11th Annual Conference of the North American Chapter of the Association for Computational Linguistics (NAACL-HLT2010), pp (2010). [12] Christoph, T. and Hermann, N.: Word reordering and a dynamic programming beam search algorithm for statistical machine translation, Computational Linguistics, Vol. 29, No. 1, pp (2003). [13] Nizar, H.: Syntactic preprocessing for statistical machine translation, In Proceedings of the 11th Machine Translation Summit (MT SUMMIT XI), pp (2007). [14] Vol. 40, No. 9, pp (1999). [15] 3 pp (1997). [16] Zhang, L.: Maximum entropy modeling toolkit for c 2015 Information Processing Society of Japan 9
10 Python and C++, s /maxent_toolkit.html (2008). [Online; accessed 1-March-2008]. [17] Vol. 43, No. 6, pp (2002). c 2015 Information Processing Society of Japan 10
21 Pitman-Yor Pitman- Yor [7] n -gram W w n-gram G Pitman-Yor P Y (d, θ, G 0 ) (1) G P Y (d, θ, G 0 ) (1) Pitman-Yor d, θ, G 0 d 0 d 1 θ Pitman-Yor G
ol2013-nl-214 No6 1,a) 2,b) n-gram 1 M [1] (TG: Tree ubstitution Grammar) [2], [3] TG TG 1 2 a) ohno@ilabdoshishaacjp b) khatano@maildoshishaacjp [4], [5] [6] 2 Pitman-Yor 3 Pitman-Yor 1 21 Pitman-Yor
A Japanese Word Dependency Corpus ÆüËܸì¤Îñ¸ì·¸¤ê¼õ¤±¥³¡¼¥Ñ¥¹
A Japanese Word Dependency Corpus 2015 3 18 Special thanks to NTT CS, 1 /27 Bunsetsu? What is it? ( ) Cf. CoNLL Multilingual Dependency Parsing [Buchholz+ 2006] (, Penn Treebank [Marcus 93]) 2 /27 1. 2.
Modal Phrase MP because but 2 IP Inflection Phrase IP as long as if IP 3 VP Verb Phrase VP while before [ MP MP [ IP IP [ VP VP ]]] [ MP [ IP [ VP ]]]
30 4 2016 3 pp.195-209. 2014 N=23 (S)AdvOV (S)OAdvV 2 N=17 (S)OAdvV 2014 3, 2008 Koizumi 1993 3 MP IP VP 1 MP 2006 2002 195 Modal Phrase MP because but 2 IP Inflection Phrase IP as long as if IP 3 VP Verb
[4], [5] [6] [7] [7], [8] [9] 70 [3] 85 40% [10] Snowdon 50 [5] Kemper [3] 2.2 [11], [12], [13] [14] [15] [16]
1,a) 1 2 1 12 1 2Type Token 2 1 2 1. 2013 25.1% *1 2012 8 2010 II *2 *3 280 2025 323 65 9.3% *4 10 18 64 47.6 1 Center for the Promotion of Interdisciplinary Education and Research, Kyoto University 2
IPSJ SIG Technical Report Vol.2010-NL-199 No /11/ treebank ( ) KWIC /MeCab / Morphological and Dependency Structure Annotated Corp
1. 1 1 1 2 treebank ( ) KWIC /MeCab / Morphological and Dependency Structure Annotated Corpus Management Tool: ChaKi Yuji Matsumoto, 1 Masayuki Asahara, 1 Masakazu Iwatate 1 and Toshio Morita 2 This paper
1 Fig. 1 Extraction of motion,.,,, 4,,, 3., 1, 2. 2.,. CHLAC,. 2.1,. (256 ).,., CHLAC. CHLAC, HLAC. 2.3 (HLAC ) r,.,. HLAC. N. 2 HLAC Fig. 2
CHLAC 1 2 3 3,. (CHLAC), 1).,.,, CHLAC,.,. Suspicious Behavior Detection based on CHLAC Method Hideaki Imanishi, 1 Toyohiro Hayashi, 2 Shuichi Enokida 3 and Toshiaki Ejima 3 We have proposed a method for
IPSJ SIG Technical Report Vol.2011-EC-19 No /3/ ,.,., Peg-Scope Viewer,,.,,,,. Utilization of Watching Logs for Support of Multi-
1 3 5 4 1 2 1,.,., Peg-Scope Viewer,,.,,,,. Utilization of Watching Logs for Support of Multi-View Video Contents Kosuke Niwa, 1 Shogo Tokai, 3 Tetsuya Kawamoto, 5 Toshiaki Fujii, 4 Marutani Takafumi,
Vol.54 No (July 2013) [9] [10] [11] [12], [13] 1 Fig. 1 Flowchart of the proposed system. c 2013 Information
Vol.54 No.7 1937 1950 (July 2013) 1,a) 2012 11 1, 2013 4 5 1 Similar Sounds Sentences Generator Based on Morphological Analysis Manner and Low Class Words Masaaki Kanakubo 1,a) Received: November 1, 2012,
1: A/B/C/D Fig. 1 Modeling Based on Difference in Agitation Method artisoc[7] A D 2017 Information Processing
1,a) 2,b) 3 Modeling of Agitation Method in Automatic Mahjong Table using Multi-Agent Simulation Hiroyasu Ide 1,a) Takashi Okuda 2,b) Abstract: Automatic mahjong table refers to mahjong table which automatically
IPSJ SIG Technical Report Vol.2009-DPS-141 No.20 Vol.2009-GN-73 No.20 Vol.2009-EIP-46 No /11/27 1. MIERUKEN 1 2 MIERUKEN MIERUKEN MIERUKEN: Spe
1. MIERUKEN 1 2 MIERUKEN MIERUKEN MIERUKEN: Speech Visualization System Based on Augmented Reality Yuichiro Nagano 1 and Takashi Yoshino 2 As the spread of the Augmented Reality(AR) technology and service,
¥ì¥·¥Ô¤Î¸À¸ì½èÍý¤Î¸½¾õ
2013 8 18 Table of Contents = + 1. 2. 3. 4. 5. etc. 1. ( + + ( )) 2. :,,,,,, (MUC 1 ) 3. 4. (subj: person, i-obj: org. ) 1 Message Understanding Conference ( ) UGC 2 ( ) : : 2 User-Generated Content [
[2] OCR [3], [4] [5] [6] [4], [7] [8], [9] 1 [10] Fig. 1 Current arrangement and size of ruby. 2 Fig. 2 Typography combined with printing
1,a) 1,b) 1,c) 2012 11 8 2012 12 18, 2013 1 27 WEB Ruby Removal Filters Using Genetic Programming for Early-modern Japanese Printed Books Taeka Awazu 1,a) Masami Takata 1,b) Kazuki Joe 1,c) Received: November
Input image Initialize variables Loop for period of oscillation Update height map Make shade image Change property of image Output image Change time L
1,a) 1,b) 1/f β Generation Method of Animation from Pictures with Natural Flicker Abstract: Some methods to create animation automatically from one picture have been proposed. There is a method that gives
258 5) GPS 1 GPS 6) GPS DP 7) 8) 10) GPS GPS 2 3 4 5 2. 2.1 3 1) GPS Global Positioning System
Vol. 52 No. 1 257 268 (Jan. 2011) 1 2, 1 1 measurement. In this paper, a dynamic road map making system is proposed. The proposition system uses probe-cars which has an in-vehicle camera and a GPS receiver.
自然言語処理16_2_45
FileMaker Pro E-learning GUI Phrase Reading Cloze. E-learning Language Processing Technology and Educational Material Development Generating English Educational Material using a Database Software Kenichi
The copyright of this material is retained by the Information Processing Society of Japan (IPSJ). The material has been made available on the website
The copyright of this material is retained by the Information Processing Society of Japan (IPSJ). The material has been made available on the website by the author(s) under the agreement with the IPSJ.
ID 3) 9 4) 5) ID 2 ID 2 ID 2 Bluetooth ID 2 SRCid1 DSTid2 2 id1 id2 ID SRC DST SRC 2 2 ID 2 2 QR 6) 8) 6) QR QR QR QR
Vol. 51 No. 11 2081 2088 (Nov. 2010) 2 1 1 1 which appended specific characters to the information such as identification to avoid parity check errors, before QR Code encoding with the structured append
IPSJ SIG Technical Report Pitman-Yor 1 1 Pitman-Yor n-gram A proposal of the melody generation method using hierarchical pitman-yor language model Aki
Pitman-Yor Pitman-Yor n-gram A proposal of the melody generation method using hierarchical pitman-yor language model Akira Shirai and Tadahiro Taniguchi Although a lot of melody generation method has been
main.dvi
305 8550 1 2 CREST [email protected] 1 7% 2 2 3 PRIME Multi-lingual Information Retrieval 2 2.1 Cross-Language Information Retrieval CLIR 1990 CD-ROM a. b. c. d. b CLIR b 70% CLIR CLIR 2.2 (b) 2
1 UD Fig. 1 Concept of UD tourist information system. 1 ()KDDI UD 7) ) UD c 2010 Information Processing S
UD 1 2 3 4 1 UD UD UD 2008 2009 Development and Evaluation of UD Tourist Information System Using Mobile Phone to Heritage Park HISASHI ICHIKAWA, 1 HIROYUKI FUKUOKA, 2 YASUNORI OSHIDA, 3 TORU KANO 4 and
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,
Vol. 43 No. 7 July 2002 ATR-MATRIX,,, ATR ITL ATR-MATRIX ATR-MATRIX 90% ATR-MATRIX Development and Evaluation of ATR-MATRIX Speech Translation System
Vol. 43 No. 7 July 2002 ATR-MATRIX,,, ATR ITL ATR-MATRIX ATR-MATRIX 90% ATR-MATRIX Development and Evaluation of ATR-MATRIX Speech Translation System Fumiaki Sugaya,,, Toshiyuki Takezawa, Eiichiro Sumita,
第62巻 第1号 平成24年4月/石こうを用いた木材ペレット
Bulletin of Japan Association for Fire Science and Engineering Vol. 62. No. 1 (2012) Development of Two-Dimensional Simple Simulation Model and Evaluation of Discharge Ability for Water Discharge of Firefighting
& Vol.5 No (Oct. 2015) TV 1,2,a) , Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Ro
TV 1,2,a) 1 2 2015 1 26, 2015 5 21 Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Rotation Using Mobile Device Hiroyuki Kawakita 1,2,a) Toshio Nakagawa 1 Makoto Sato
The Plasma Boundary of Magnetic Fusion Devices
ASAKURA Nobuyuki, Japan Atomic Energy Research Institute, Naka, Ibaraki 311-0193, Japan e-mail: [email protected] The Plasma Boundary of Magnetic Fusion Devices Naka Fusion Research Establishment,
IPSJ SIG Technical Report Vol.2014-DBS-159 No.6 Vol.2014-IFAT-115 No /8/1 1,a) 1 1 1,, 1. ([1]) ([2], [3]) A B 1 ([4]) 1 Graduate School of Info
1,a) 1 1 1,, 1. ([1]) ([2], [3]) A B 1 ([4]) 1 Graduate School of Information Science and Technology, Osaka University a) [email protected] 1 1 Bucket R*-tree[5] [4] 2 3 4 5 6 2. 2.1 2.2 2.3
(a) (b) (c) Canny (d) 1 ( x α, y α ) 3 (x α, y α ) (a) A 2 + B 2 + C 2 + D 2 + E 2 + F 2 = 1 (3) u ξ α u (A, B, C, D, E, F ) (4) ξ α (x 2 α, 2x α y α,
[II] Optimization Computation for 3-D Understanding of Images [II]: Ellipse Fitting 1. (1) 2. (2) (edge detection) (edge) (zero-crossing) Canny (Canny operator) (3) 1(a) [I] [II] [III] [IV ] E-mail [email protected]
Vol. 48 No. 4 Apr LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for L
Vol. 48 No. 4 Apr. 2007 LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for Learning to Associate LAN Construction Skills with TCP/IP
JFE.dvi
,, Department of Civil Engineering, Chuo University Kasuga 1-13-27, Bunkyo-ku, Tokyo 112 8551, JAPAN E-mail : [email protected] E-mail : [email protected] SATO KOGYO CO., LTD. 12-20, Nihonbashi-Honcho
(2008) JUMAN *1 (, 2000) google MeCab *2 KH coder TinyTextMiner KNP(, 2000) google cabocha(, 2001) JUMAN MeCab *1 *2 h
The Society for Economic Studies The University of Kitakyushu Working Paper Series No. 2011-12 (accepted in March 30, 2012) () (2009b) 19 (2003) 1980 PC 1990 (, 2009) (2001) (2004) KH coder (2009) TinyTextMiner
untitled
2010 58 1 39 59 c 2010 20 2009 11 30 2010 6 24 6 25 1 1953 12 2008 III 1. 5, 1961, 1970, 1975, 1982, 1992 12 2008 2008 226 0015 32 40 58 1 2010 III 2., 2009 3 #3.xx #3.1 #3.2 1 1953 2 1958 12 2008 1 2
Studies of Foot Form for Footwear Design (Part 9) : Characteristics of the Foot Form of Young and Elder Women Based on their Sizes of Ball Joint Girth
Studies of Foot Form for Footwear Design (Part 9) : Characteristics of the Foot Form of Young and Elder Women Based on their Sizes of Ball Joint Girth and Foot Breadth Akiko Yamamoto Fukuoka Women's University,
Vol.55 No (Jan. 2014) saccess 6 saccess 7 saccess 2. [3] p.33 * B (A) (B) (C) (D) (E) (F) *1 [3], [4] Web PDF a m
Vol.55 No.1 2 15 (Jan. 2014) 1,a) 2,3,b) 4,3,c) 3,d) 2013 3 18, 2013 10 9 saccess 1 1 saccess saccess Design and Implementation of an Online Tool for Database Education Hiroyuki Nagataki 1,a) Yoshiaki
1 Web [2] Web [3] [4] [5], [6] [7] [8] S.W. [9] 3. MeetingShelf Web MeetingShelf MeetingShelf (1) (2) (3) (4) (5) Web MeetingShelf
1,a) 2,b) 4,c) 3,d) 4,e) Web A Review Supporting System for Whiteboard Logging Movies Based on Notes Timeline Taniguchi Yoshihide 1,a) Horiguchi Satoshi 2,b) Inoue Akifumi 4,c) Igaki Hiroshi 3,d) Hoshi
untitled
580 26 5 SP-G 2011 AI An Automatic Question Generation Method for a Local Councilor Search System Yasutomo KIMURA Hideyuki SHIBUKI Keiichi TAKAMARU Hokuto Ototake Tetsuro KOBAYASHI Tatsunori MORI Otaru
xx/xx Vol. Jxx A No. xx 1 Fig. 1 PAL(Panoramic Annular Lens) PAL(Panoramic Annular Lens) PAL (2) PAL PAL 2 PAL 3 2 PAL 1 PAL 3 PAL PAL 2. 1 PAL
PAL On the Precision of 3D Measurement by Stereo PAL Images Hiroyuki HASE,HirofumiKAWAI,FrankEKPAR, Masaaki YONEDA,andJien KATO PAL 3 PAL Panoramic Annular Lens 1985 Greguss PAL 1 PAL PAL 2 3 2 PAL DP
17 Proposal of an Algorithm of Image Extraction and Research on Improvement of a Man-machine Interface of Food Intake Measuring System
1. (1) ( MMI ) 2. 3. MMI Personal Computer(PC) MMI PC 1 1 2 (%) (%) 100.0 95.2 100.0 80.1 2 % 31.3% 2 PC (3 ) (2) MMI 2 ( ),,,, 49,,p531-532,2005 ( ),,,,,2005,p66-p67,2005 17 Proposal of an Algorithm of
<> <name> </name> <body> <></> <> <title> </title> <item> </item> <item> 11 </item> </>... </body> </> 1 XML Web XML HTML 1 name item 2 item item HTML
DEWS2008 C6-4 XML 606-8501 E-mail: [email protected], {iwaihara,yoshikawa}@i.kyoto-u.ac.jp XML XML XML, Abstract Person Retrieval on XML Documents by Coreference that Uses Structural Features
A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member
A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member (University of Tsukuba), Yasuharu Ohsawa, Member (Kobe
Table 1. Reluctance equalization design. Fig. 2. Voltage vector of LSynRM. Fig. 4. Analytical model. Table 2. Specifications of analytical models. Fig
Mover Design and Performance Analysis of Linear Synchronous Reluctance Motor with Multi-flux Barrier Masayuki Sanada, Member, Mitsutoshi Asano, Student Member, Shigeo Morimoto, Member, Yoji Takeda, Member
Study on Throw Accuracy for Baseball Pitching Machine with Roller (Study of Seam of Ball and Roller) Shinobu SAKAI*5, Juhachi ODA, Kengo KAWATA and Yu
Study on Throw Accuracy for Baseball Pitching Machine with Roller (Study of Seam of Ball and Roller) Shinobu SAKAI*5, Juhachi ODA, Kengo KAWATA and Yuichiro KITAGAWA Department of Human and Mechanical
2). 3) 4) 1.2 NICTNICT DCRA Dihedral Corner Reflector micro-arraysdcra DCRA DCRA DCRA 3D DCRA PC USB PC PC ON / OFF Velleman K8055 K8055 K8055
1 1 1 2 DCRA 1. 1.1 1) 1 Tactile Interface with Air Jets for Floating Images Aya Higuchi, 1 Nomin, 1 Sandor Markon 1 and Satoshi Maekawa 2 The new optical device DCRA can display floating images in free
(MIRU2008) HOG Histograms of Oriented Gradients (HOG)
(MIRU2008) 2008 7 HOG - - E-mail: [email protected], {takigu,ariki}@kobe-u.ac.jp Histograms of Oriented Gradients (HOG) HOG Shape Contexts HOG 5.5 Histograms of Oriented Gradients D Human
( ) [1] [4] ( ) 2. [5] [6] Piano Tutor[7] [1], [2], [8], [9] Radiobaton[10] Two Finger Piano[11] Coloring-in Piano[12] ism[13] MIDI MIDI 1 Fig. 1 Syst
情報処理学会インタラクション 2015 IPSJ Interaction 2015 15INT014 2015/3/7 1,a) 1,b) 1,c) Design and Implementation of a Piano Learning Support System Considering Motivation Fukuya Yuto 1,a) Takegawa Yoshinari 1,b) Yanagi
Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori
Proposal and Characteristics Evaluation of a Power Generation System Utilizing Waste Heat from Factories for Load Leveling Pyong Sik Pak, Member, Takashi Arima, Non-member (Osaka University) In this paper,
BOK body of knowledge, BOK BOK BOK 1 CC2001 computing curricula 2001 [1] BOK IT BOK 2008 ITBOK [2] social infomatics SI BOK BOK BOK WikiBOK BO
DEIM Forum 2012 C8-5 WikiBOK 252 5258 5 10 1 E-mail: [email protected], {kaz,masunaga}@si.aoyama.ac.jp, {yabuki,sakuta}@it.aoyama.ac.jp Body Of Knowledge, BOK BOK BOK BOK BOK, BOK Abstract Extention
【資料4】CEFR準拠の英語到達基準JS「ジャパン・スタンダード」の策定
9 CAN-DO 2014.1.10 CEFR JS JS [email protected] JS Japan Standards JS for Foreign Language Proficiency, based on CEFR CEFR B, 2010-2012 CEFR 2 , Prof. & Dr. Sauli Takala Finland EALTA (European Association
HASC2012corpus HASC Challenge 2010,2011 HASC2011corpus( 116, 4898), HASC2012corpus( 136, 7668) HASC2012corpus HASC2012corpus
HASC2012corpus 1 1 1 1 1 1 2 2 3 4 5 6 7 HASC Challenge 2010,2011 HASC2011corpus( 116, 4898), HASC2012corpus( 136, 7668) HASC2012corpus HASC2012corpus: Human Activity Corpus and Its Application Nobuo KAWAGUCHI,
( ) ( ) Modified on 2009/05/24, 2008/09/17, 15, 12, 11, 10, 09 Created on 2008/07/02 1 1) ( ) ( ) (exgen Excel VBA ) 2)3) 1.1 ( ) ( ) : : (1) ( ) ( )
() ( ) Modified on 2009/05/24, 2008/09/17, 15, 12, 11, 10, 09 Created on 2008/07/02 1 1) () ( ) (exgen Excel VBA ) 2)3) 1.1 ( ) () : : (1) ( ) ( ) (2) / (1) (= ) (2) (= () =) 4)5) () ( ) () (=) (1) : (
