Size: px
Start display at page:

Download ""

Transcription

1 Jupiter User Guide

2

3 Jupiter Genius[2] Genius Jupiter Jupiter Stacked Alternating Offers Protocol(SAOP)[1] Jupiter 1 Genius Jupiter 1 Jupiter 2 Jupiter 3 1

4 Jupiter Jupiter Jupiter Jupiter Jupiter Jupiter

5 20 3

6 Jupiter

7 1 Jupiter 1.1 Jupiter [3] 1.2 Jupiter Stacked Alternating Offers Protocol(SAOP)[1] SAOP 1 2 Offer Accept EndNegotiation Jupiter

8 Jupiter 1. EndNegotiation EndNegotiation EndNegotiation Offer Accept EndNegotiation Offer 1 Offer Offer Offer 2. Accept Offer Offer Accept 1.3 6

9 EndNegotiation EndNegotiation (bid) s n I i i (bid) (1.1) s = {(s 1, s 2,..., s n ) s i I i, i = 1, 2,..., n} (1.1) (1.1) 3 1. U(s k ; w) (1.2) (1.3) (1.4) ) U(s; w) = n w i eval(s i ) (1.2) i=1 n w i = 1 (1.3) i=1 eval(s i ) = value(s i ) arg max value(s (1.4) s i I i i w i i 0 w i 1(1 i n) value(s i ) I i s i 7

10 Jupiter w i (1 i n) value(s i )(s i I i ) (1.4) (1.2) (1.3) (1.5) 0 eval(s i ) 1 (1.5) 0 U(s; w) 1( s) 2. EndNegotiation r e (1.6) U(e) = r (1.6) 3. U d d t(0 t 1) U d (s, t; d) = U(s) d t (1.7) U d (e, t; d) = U(e) d t (1.8) 0.2, 0.4,..., 1.0 d t 1.1 8

11 : U(s) 1.2 n = 2 I 1 = 2 I 2 = 2 w 1 = 0.3 w 2 = 0.7 value(s 11 ) = 3 value(s 12 ) = 5 value(s 21 ) = 3 value(s 22 ) = 6 S S = {(s 11, s 21 ), (s 11, s 22 ), (s 12, s 21 ), (s 12, s 22 )} (s 11, s 21 ) value(s 11 ) U((s 11, s 21 ); w) = w 1 arg max value(s 1 ) + w value(s 21 ) 2 arg max value(s 2 ) s 1 I 1 s 2 I 2 = =

12 Jupiter 1.2: 2 2 U((s 11, s 22 ); w) = 0.88 U((s 12, s 21 ); w) = 0.65 U((s 12, s 22 ); w) =

13 2 Jupiter 2.1 Jupiter Jupiter Python3 python 3.5 numpy pandas py4j matplotlib Cython Cython C mac linux windows MinGW gcc 11

14 Jupiter macos OS macos Sierra Python Python3 cycler== matplotlib==2.1.1 numpy== pandas== py4j== pyparsing==2.2.0 python-dateutil==2.6.1 pytz== six== Cython=0.28 Windows OS Windows 10 Python

15 2.3 Jupiter Python3 cycler== Cython=0.28 kiwisolver==1.0.1 matplotlib==2.2.0 numpy== pandas== py4j== pyparsing==2.2.0 python-dateutil==2.7.0 pytz== six== Jupiter Jupiter 1. pip install jupiter-negotiation 2. jupiter test jupiter Jupiter Jupiter 13

16 Jupiter 2.1: Jupiter Listing 2.1: Jupiter 1 import os 2 import j u p i t e r 3 from j u p i t e r. s i m u l a t o r. j u p i t e r import J u p i t e r 4 from j u p i t e r. s i m u l a t o r. n e g o t i a t i o n R u l e import TypeOfNegotiation 5 from j u p i t e r. agents import l i n e a r A g e n t 6 from j u p i t e r. agents import concederagent 7 8 i f name == m a i n : 9 j u p i t e r p a t h = os. path. abspath ( j u p i t e r. p a t h [ 1]) 10 domain path = os. path. j o i n ( j u p i t e r p a t h, j u p i t e r /domain/ ) 11 j u p i t e r = J u p i t e r ( TypeOfNegotiation. Turn, , 13 domain path + Atlas3 / t r i a n g u l a r F i g h t. xml, 14 domain path + Atlas3 / t r i a n g u l a r F i g h t u t i l 1. xml, 15 domain path + Atlas3 / t r i a n g u l a r F i g h t u t i l 2. xml ) 16 j u p i t e r. s e t a g e n t ( linearagent, LinearAgent ) 17 j u p i t e r. s e t a g e n t ( concederagent, ConcederAgent ) 18 j u p i t e r. d o n e g o t i a t i o n ( i s p r i n t i n g=true, p r i n t t i m e s =1) 19 j u p i t e r. d i s p l a y. show ( ) Jupiter Listing main.py 2. main.py Listing main.py 14

17 2.4 Jupiter main.py Jupiter 1. jupiter Jupiter negotiationrule TypeOfNegotiation import 2. Jupiter Jupiter 4 3. Listing2.1 LinearAgent ConcederAgent str Jupiter jupiter.py Jupiter Genius Genius Jupiter str Jupiter 1. myagent.py main.py 15

18 Jupiter 2. myagent.py Listing main.py 17 jupiter.set agent(myagent, MyAgent ) Listing 2.2: myagent.py 1 import s y s 2 import os 3 from j u p i t e r. s i m u l a t o r import abstractagent 4 from j u p i t e r. s i m u l a t o r import agentaction 5 from j u p i t e r. s i m u l a t o r import a b s t r a c t U t i l i t y S p a c e 6 from j u p i t e r. s i m u l a t o r import n e g o t i a t i o n R u l e c l a s s MyAgent ( abstractagent. AbstractAgent ) : 10 d e f i n i t ( s e l f, 11 u t i l i t y s p a c e : a b s t r a c t U t i l i t y S p a c e. A b s t r a c t U t i l i t y S p a c e, 12 n e g o t i a t i o n r u l e : n e g o t i a t i o n R u l e. NegotiationRule, 13 a g e n t i d : int, 14 agent num : i n t ) : 15 s e l f. u t i l i t y s p a c e = u t i l i t y s p a c e 16 s e l f. r u l e = n e g o t i a t i o n r u l e 17 s e l f. a g e n t i d = a g e n t i d 18 s e l f. o p p o n e n t b i d = None d e f r e c e i v e a c t i o n ( s e l f, a g e n taction : agentaction. AbstractAction ) : 21 i f i s i n s t a n c e ( agentaction, agentaction. O f f e r ) : 22 s e l f. o p p o n e n t b i d = agentaction. g e t b i d ( ) d e f s e n d a c t i o n ( s e l f ) : 25 d e f g e t c o n s s e t i o n v a l u e ( ) : 26 r e t u r n ( 1. 0 s e l f. r u l e. get time now ( ) ) i f s e l f. o p p o n e n t b i d i s not None and \ 29 g e t c o n s s e t i o n v a l u e ( ) < \ 30 s e l f. u t i l i t y s p a c e. g e t u t i l i t y ( s e l f. o p p o n e n t b i d ) : 31 r e t u r n agentaction. Accept ( s e l f. a g e n t i d ) t h r e s h o l d = g e t c o n s s e t i o n v a l u e ( ) 34 b i d o f f e r = \ 35 s e l f. u t i l i t y s p a c e. g e t b i d a b o v e c o n c e s s i o n v a l u e ( t h r e s h o l d ) 36 r e t u r n agentaction. O f f e r ( s e l f. a g e n t i d, b i d o f f e r ) d e f r e c e i v e s t a r t n e g o t i a t i o n ( s e l f ) : 39 s e l f. o p p o n e n t b i d = None d e f get name ( s e l f ) : 42 r e t u r n MyAgent 16

19 2.5 Jupiter 2.5 Jupiter Jupiter Linear Conceder Boulware (Accept) (Offer) (EndNegotiation) 1 Acceptance Strategy Acceptance Strategy 2 T (t) = u max (1.0 t α ) (2.1) (2.1) T (t) u max Genius Jupiter u max = 1 (2.1) α = 1 Linear Linear Conceder (2.1) α = 0.5 Boulware (2.1) α = ANAC jupiter pip show jupiter-negotiation 17

20 Jupiter Jupiter Jupiter Notebook start.html 18

21 3 User Guide Jupiter 19

22 [1] Aydoğan, Reyhan, et al.: Alternating offers protocols for multilateral negotiation. Modern Approaches to Agent-based Complex Automated Negotiation. Springer International Publishing, [2] Lin, Raz, et al.: Genius: An integrated environment for supporting the design of generic automated negotiators. Computational Intelligence 30.1 (2014): [3] T. Baarslag, R. Aydogan, K. V. Hindriks, K. Fuijita, T. Ito, and C. M. Jonker.: The automated negotiating agents competition AI Magazine,

情報処理学会研究報告 IPSJ SIG Technical Report Vol.2015-ICS-179 No /3/20 1,a) 1,b) Bilateral Multi-issue Closed Bargaining Problem BMCBP BMCBP ANAC A Neg

情報処理学会研究報告 IPSJ SIG Technical Report Vol.2015-ICS-179 No /3/20 1,a) 1,b) Bilateral Multi-issue Closed Bargaining Problem BMCBP BMCBP ANAC A Neg 1,a) 1,b) Bilateral Multi-issue Closed Bargaining Problem BMCBP BMCBP ANAC A Negotiation Strategy based on Evolutionary Stable Strategy in Bilateral Closed Bargaining Problem Akiyuki Mori 1,a) Takayuki

More information

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl Python ( ) 2017. 11. 21. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1.................................. 7 5.2..................................

More information

RL_tutorial

RL_tutorial )! " = $ % & ' "(& &*+ = ' " + %' "(- + %. ' "(. + γ γ=0! " = $ " γ=0.9! " = $ " + 0.9$ " + 0.81$ "+, + ! " #, % #! " #, % # + (( + #,- +. max 2 3! " #,-, % 4! " #, % # ) α ! " #, % ' ( )(#, %)!

More information

Stapy_Tsuji_ key

Stapy_Tsuji_ key Python #23 2017.4.12 Python @tsjshg shingo.tsuji@gmail.com 1975 C++ IT Java Web 10 Python Python 3 Python Python Python Python SQL Excel PowerPoint PDF 2 http://pypl.github.io/pypl.html 1 http://blog.codeeval.com/codeevalblog/2016/2/2/most-popular-coding-languages-of-2016

More information

In [168]: soup.find_all("label")

In [168]: soup.find_all(label) step 1 kakaku.com/bicycle/bicycle-battery/ web web Chrome cntl + Source Code and Copy cd 'kakaku_com_bicycle_bicycle-battery.html' In [166]: from bs4 import BeautifulSoup In [167]: html = open('kakaku_com_bicycle_bicycle-battery_2017.html')

More information

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6 Python (Anaconda ) 2017. 05. 30. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1..................................

More information

In [5]: soup.tbody Out[5]: <tbody> <tr> <th><label for=""> </label></th> <td> </td> <td><input checked="checked" class="input-label-horizontal" id="se

In [5]: soup.tbody Out[5]: <tbody> <tr> <th><label for=> </label></th> <td> </td> <td><input checked=checked class=input-label-horizontal id=se IPC JPlatpat Chrome cntl + Source Code cd ' 20170101.html' In [1]: from bs4 import BeautifulSoup 20170101 In [2]: html = open('shimazu_2017.html') soup = BeautifulSoup(html, "html.parser") In [3]: type(soup)

More information

Anaconda x86_64 版バージョン の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL: Anaconda は,Py

Anaconda x86_64 版バージョン の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL:   Anaconda は,Py Anaconda x86_64 版バージョン 5.0.0 の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL: https://www.kunihikokaneko.com/dblab/toolchain/anaconda3.html Anaconda は,Python バージョン 3 の言語処理系と, 開発環境と, 各種ツールの詰め合わせであ る. キーワード

More information

Microsoft PowerPoint - テキスト-Web掲載版.pptx

Microsoft PowerPoint - テキスト-Web掲載版.pptx 1 IRAF/PyRAF インストール講習会 磯貝瑞希国立天文台天文データセンター 2017.12.19 ウェブ掲載版 2 はじめに 本日の講習会の目的 : IRAF/PyRAFをシステム (Linux, CentOS 7) にインストールできるようになること 講習内容 : 1. IRAF (v2.16.1) のインストール IRAF, STSDAS/TABLES, x11iraf, SAOimageds9

More information

sg_lenovo_os.xlsx

sg_lenovo_os.xlsx System x OS System Guide Windows Server 1/41 2/41 3/41 4/41 Lenovo OEMRed Hat Enterprise Linux 5/41 6/41 7/41 8/41 9/41 10/41 11/41 12/41 13/41 14/41 15/41 16/41 VMware Lenovo 17/41 18/41 19/41 20/41 21/41

More information

A B, ID http:// End-User 3 How do I get an OpenID?, 4

A B, ID http:// End-User 3 How do I get an OpenID?, 4 ID - OpenID Authentication1.1) 2007 12 07 XML Day, 1 07-Dec-2007, 2 A B, ID http:// End-User 3 How do I get an OpenID?, 4 , 5, 6 ~120 million OpenID s (including every AOL and LiveJournal user), 7, 8 ,

More information

18 (1) US (2) US US US 90 (3) 2 8 1 18 108 2 2,000 3 6,000 4 33 2 17 5 2 3 1 2 8 6 7 7 2 2,000 8 1 8 19 9 10 2 2 7 11 2 12 28 1 2 11 7 1 1 1 1 1 1 3 2 3 33 2 1 3 2 3 2 16 2 8 3 28 8 3 5 13 1 14 15 1 2

More information

‘îŁñ›È−wfiÁŁÊ”À„±I --Tensorflow‡ð”g‡Á‡½fl»ŁÊ›ð’Í--

‘îŁñ›È−wfiÁŁÊ”À„±I  --Tensorflow‡ð”g‡Á‡½fl»ŁÊ›ð’Í-- I Tensorflow 2018 10 31 ( ) ( ) Tensorflow 2018 10 31 ( ) 1 / 39 Tensorflow I Tensorflow Python Python(+Python Anaconda) Tensorflow Tensorflow 1 Anaconda Prompt 2 Anaconda Prompt (base) C:\Users\komori>conda

More information

QW-3414

QW-3414 MA1312-C P 1 2 3 A E L D E D A A E D A D D D D D E A C A C E D A A A C A C A C E E E D D D A C A C A A A A C A C A C E E C C E D D C C C E C E C C E C C C E D A C A C A C E L B B

More information

([ ],), : [Name], name1 name2 name10 4, 2 SuperSQL, ([ ]!), name1 name2 : [Name]! name10 2. 3 SuperSQL,,,,,,, < < > } =,

([ ],), : [Name], name1 name2 name10 4, 2 SuperSQL, ([ ]!), name1 name2 : [Name]! name10 2. 3 SuperSQL,,,,,,, < < > } =, DEIM Forum 2014 E3-5 SuperSQL 223-8522 3-14-1 E-mail: {masato,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp SuperSQL, SQL, SuperSQL ssqltool, ssqltool, SuperSQL, Viewer Viewer, SuperSQL,,,, HTML, 1. SQL,

More information

appli_HPhi_install

appli_HPhi_install 2018/3/7 HΦ version 3.0.0 インストール手順書 (Linux 64 ビット版 ) 目次 1. アプリケーション概要...- 1-2. システム環境...- 1-3. 必要なツール ライブラリのインストール...- 1-1 cmake...- 2-2 numpy...- 3-4. アプリケーションのインストール...- 4-5. 動作確認の実施...- 5 - 本手順書は HΦ

More information

A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in

A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in the light of the recent popularity of tertiary artificial

More information

1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summ

1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summ 2011 08H046 1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summify [3]..............................................

More information

untitled

untitled ALTIRIS RECOVERY SOLUTION 6.2(Server-based Mode) Quick Startup Guide Rev. 1.1 2007 10 18 1.... 2 1.1 RECOVERY SOLUTION SERVER... 2 1.2 RECOVERY AGENT... 3 2.... 4 2.1... 4 2.2 RECOVERY SOLUTION... 5 2.3

More information

double float

double float 2015 3 13 1 2 2 3 2.1.......................... 3 2.2............................. 3 3 4 3.1............................... 4 3.2 double float......................... 5 3.3 main.......................

More information

2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1

2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1 2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1 必要環境 Windows10 がインストールされた PC メモリ 8GB 以上必須,16GB 以上推奨 インターネット接続 Windows のユーザ名に日本語等の全角文字を使用していないこと.

More information

Sage for Mathematics : a Primer ‚æ1Łfl - Sage ‡ð™m‡é

Sage for Mathematics : a Primer   ‚æ1Łfl - Sage ‡ð™m‡é .. / JST CREST. s-yokoyama@imi.kyushu-u.ac.jp 2013 1 15 / IIJ Shun ichi Yokoyama (IMI/JST CREST) at IIJ January 15th, 2013 1 / 23 1 Sage Sage Sage Notebook Sage Salvus 2 Sage Sage Cryptosystem Sage Shun

More information

Anaconda (2019/7/3)

Anaconda (2019/7/3) Published on Research Center for Computational Science (https://ccportal.ims.ac.jp) Home > Anaconda3-2019.03 (2019/7/3) Anaconda3-2019.03 (2019/7/3) 1 利用方法 conda, anaconda に関する情報はウェブ上にたくさんありますので それらも参考にしてください

More information

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage

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

listings-ext

listings-ext (10) (2) ( ) ohsaki@kwansei.ac.jp 8 (2) 1 8.1.............................. 1 8.2 mobility.fixed.......................... 2 8.3 mobility.randomwalk...................... 7 8.4 mobility.randomwaypoint...................

More information

LAN LAN LAN LAN LAN LAN,, i

LAN LAN LAN LAN LAN LAN,, i 22 A secure wireless communication system using virtualization technologies 1115139 2011 3 4 LAN LAN LAN LAN LAN LAN,, i Abstract A secure wireless communication system using virtualization technologies

More information

ビッグデータアナリティクス - 第3回: 分散処理とApache Spark

ビッグデータアナリティクス - 第3回: 分散処理とApache Spark 3 : Apache Spark 2017 10 20 2017 10 20 1 / 32 2011 1.8ZB 2020 35ZB 1ZB = 10 21 = 1,000,000,000,000 GB Word Excel XML CSV JSON text... 2017 10 20 2 / 32 CPU SPECfp Pentium G3420 77.6 8,946 Xeon Gold 6128

More information

untitled

untitled SUBJECT: Applied Biosystems Data Collection Software v2.0 v3.0 Windows 2000 OS : 30 45 Cancel Data Collection - Applied Biosystems Sequencing Analysis Software v5.2 - Applied Biosystems SeqScape Software

More information

(search: ) [1] ( ) 2 (linear search) (sequential search) 1

(search: ) [1] ( ) 2 (linear search) (sequential search) 1 2005 11 14 1 1.1 2 1.2 (search:) [1] () 2 (linear search) (sequential search) 1 2.1 2.1.1 List 2-1(p.37) 1 1 13 n

More information

1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36

1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36 3 2016 6 27 1 / 36 1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36 1 2 3 3 / 36 4 / 36 os.urandom(n) n >>> import os >>> r = os.urandom(4) #

More information

2006cn

2006cn http://www.cri-how.co.jp/ysk/ CLUB NOTEBOOK 2006 64655 64656 64657 64658 64659 64660 64661 64662 2 64663 64664 64665 64666 64667 64668 64669 64670 3 64671 64672 64673 64674 64675 64676 64677 64678 4 64679

More information

2003cn

2003cn http://www.crihow.com/ysk/ CLUB NOTEBOOK 2007 66436 66437 66438 66439 66440 66441 66442 2 66443 66444 66445 66446 66447 66448 66449 3 66450 66451 66452 66454 66456 66457 66458 4 66459 66460 66461 66462

More information

2003cn

2003cn http://www.cri-how.co.jp/ysk/ CLUB NOTEBOOK 2005 51912 51913 51914 51915 51916 51917 51918 2 51919 51920 51921 51923 51925 3 51926 51927 51928 51929 51930 51931 51932 4 51933 51934 51935 51936 51940 51942

More information

2004cn

2004cn http://www.cri-how.co.jp/ysk/ CLUB NOTEBOOK 2004 40347 40348 40349 40350 40351 40352 40353 40354 2 40355 40357 40358 40359 40360 40361 3 40362 40363 40364 40365 40366 40367 4 40368 40369 40370 40371 40372

More information

WHITE PAPER RNN

WHITE PAPER RNN WHITE PAPER RNN ii 1... 1 2 RNN?... 1 2.1 ARIMA... 1 2.2... 2 2.3 RNN Recurrent Neural Network... 3 3 RNN... 5 3.1 RNN... 6 3.2 RNN... 6 3.3 RNN... 7 4 SAS Viya RNN... 8 4.1... 9 4.2... 11 4.3... 15 5...

More information

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ R 2 2017 Email: gito@eco.u-toyama.ac.jp October 16, 2017 Outline 1 ( ) 2 R RStudio 3 4 R (Toyama/NIHU) R October 16, 2017 1 / 34 R RStudio, R PC ( ) ( ) (Toyama/NIHU) R October 16, 2017 2 / 34 R ( ) R

More information

XMP structure: 1

XMP structure: 1 WPS Python プロシジャユーザーガイドとリファレンス バージョン : 4.1.2 Copyright 2002-2019 World Programming Limited www.worldprogramming.com 目次 はじめに... 3 セットアップと設定...4 WPS で Python を使用する...5 PROC PYTHON...6 EXPORT... 6 IMPORT...7

More information

Microsoft Word - USB60F_Raspi_ doc

Microsoft Word - USB60F_Raspi_ doc REX-USB60F USB RS-232C 変換アダプタ REX-USB60F の Raspberry Pi での使用について 1. 概要 2 2. 設定手順 2 2-1. REX-USB60F の装着と確認 2 3. 通信の確認 4 3-1. cutecom による確認 4 4. Python での使用 8 4-1. データ送信のスクリプト 8 4-2. データ受信のスクリプト 9 2016 年

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

大規模ソフトウェアを手探る

大規模ソフトウェアを手探る 1 / 12 ( ) (what how) プログラミング 演 習 アルゴリズム G1G2G3... 実 用 ソフト コンパイラ(gcc, llvm, python,...), データベース(sqlite, mariadb,...), ブラウザ(firefox, chrome,...) シェル(bash, tcsh,...) OS (Linux, FreeBSD, Windows, Mac,...)

More information

FFTSS Library Version 3.0 User's Guide

FFTSS Library Version 3.0 User's Guide : 19 10 31 FFTSS 3.0 Copyright (C) 2002-2007 The Scalable Software Infrastructure Project, (CREST),,. http://www.ssisc.org/ Contents 1 4 2 (DFT) 4 3 4 3.1 UNIX............................................

More information

Visual Python, Numpy, Matplotlib

Visual Python, Numpy, Matplotlib Visual Python, Numpy, Matplotlib 1 / 57 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 2 / 57 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 3 / 57 3 Visual Python: 3D Numpy,

More information

2016 35 H28 11 15 TUE H28 11 19 SAT 1115 201635 2016 1 2 5 3 4 2016 281115 111945 1115190011191030 140 111514301530 5 15,795 5 120 145,000 11,600 156,600 137,000 10,960 147,960 132,000 10,560 142,560

More information

3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println("Hello World");

3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println(Hello World); (Basic Theory of Information Processing) Java (eclipse ) Hello World! eclipse Java 1 3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println("Hello

More information

nakao

nakao Fortran+Python 4 Fortran, 2018 12 12 !2 Python!3 Python 2018 IEEE spectrum https://spectrum.ieee.org/static/interactive-the-top-programming-languages-2018!4 Python print("hello World!") if x == 10: print

More information

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版)

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版) JEE ADOBE EXPERIENCE MANAGER FORMS WEBLOGIC http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 AEM forms 2 AEM Forms 3 4 - WebLogic Server 4.1............................................................................

More information

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI 2017 1 2017 -September I ll remember- 1,2 Linux 6 Linux Linux 2 3 Linux 2 (OS) Windows MacOS OS MacOS Linux 3 Windows Windows ( ) 1. Bash on Ubuntu on Windows ( Windows 10 ) 2. cygwin ( ) 3. VM Ware Linux

More information

2015/4/13 10: C C C C John C. Hull,, Steven E. Shreve, (1), Peter E. Kloeden, Eckhard Platen Num

2015/4/13 10: C C C C John C. Hull,, Steven E. Shreve, (1), Peter E. Kloeden, Eckhard Platen Num 2015/4/13 10:56 0 0.1 http://cm.hit-u.ac.jp/~kobayashi/lecture/ 0.2 C C C C John C. Hull,, Steven E. Shreve, (1, Peter E. Kloeden, Eckhard Platen Numerical Solution of Stochastic Differential Equations,

More information

Microsoft PowerPoint - テキスト 開催.pptx

Microsoft PowerPoint - テキスト 開催.pptx 1 IRAF/PyRAF インストール講習会 磯貝瑞希国立天文台天文データセンター 2018.06.05 ウェブ掲載版 講習の目的と内容 : 2 本日の講習会の目的 : IRAF/PyRAFをシステム (Linux, CentOS 7) にインストールできるようになること 講習内容 : 0. 仮想マシンの起動 1. IRAF (v2.16.1) のインストール IRAF, STSDAS/TABLES,

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

たのしいプログラミング Pythonではじめよう!

たのしいプログラミング Pythonではじめよう! Title of English-language original: Python for Kids A Playful Introduction to Programming ISBN 978-1-59327-407-8, published by No Starch Press, Inc. Copyright 2013 by Jason R. Briggs. Japanese-language

More information

KLCシリーズ インストール/セットアップ・ガイド

KLCシリーズ インストール/セットアップ・ガイド KORG Legacy Collection J 1 / 2 Windows XP Windows XP 1 2 Windows XP 3 4 5 6 3 / 7 8 4 Mac OS X Mac OS X 1 2 3 4 5 Mac OS X 6 5 / 7 8 6 USB / USB 1 2 USB 7 / 1 2 3 Windows Mac 4 1 Windows Mac 8 2 Windows

More information

カテゴリ変数と独立性の検定

カテゴリ変数と独立性の検定 II L04(2015-05-01 Fri) : Time-stamp: 2015-05-01 Fri 22:28 JST hig 2, Excel 2, χ 2,. http://hig3.net () L04 II(2015) 1 / 20 : L03-S1 Quiz : 1 2 7 3 12 (x = 2) 12 (y = 3) P (X = x) = 5 12 (x = 3), P (Y =

More information

Plural bookkeep using Exchange Algebra Yuji Onuki (University of tsukuba) Key Words:,,, 1 Deguchi(2004) 2 (1984) Staszkiewicz(2011) SNA n n r 1,1 < Na

Plural bookkeep using Exchange Algebra Yuji Onuki (University of tsukuba) Key Words:,,, 1 Deguchi(2004) 2 (1984) Staszkiewicz(2011) SNA n n r 1,1 < Na Plural bookkeep using Exchange Algebra Yuji Onuki (University of tsukuba) Key Words:,,, 1 Deguchi(2004) 2 (1984) Staszkiewicz(2011) SNA n n r 1,1 < Name 1,1, > +r 1,2 < Name 1,2, > + + r 1,k1 < Name 1,k1,

More information

Visual Python, Numpy, Matplotlib

Visual Python, Numpy, Matplotlib Visual Python, Numpy, Matplotlib 1 / 38 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 2 / 38 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 3 / 38 3 Visual Python: 3D Numpy,

More information

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法 Debian 2013 gdb+python nozzy@debian.or.jp 2013 6 29 Level Debian Up Debian Debian debian sid unstable Debian debian sid unstable *-dbg Debian debian sid unstable *-dbg gdb Debian debian sid unstable *-dbg

More information

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License LAN 2014 3 19 Copyright c 1993 2014 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 2 1.1................................... 2 1.2.........................

More information

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A PostgreSQL XML 1 1 1 1 XML,,, /. XML.,,, PostgreSQL.. Implementation of Yet Another XML-type for PostgreSQL Toshifumi Enomoto, 1 Gengo Suzuki, 1 Nobuyuki Kobayashi 1 and Masashi Yamamuro 1 There are various

More information

2 2.1 NPCMJ ( (Santorini, 2010) (NPCMJ, 2016) (1) (, 2016) (1) (2) (1) ( (IP-MAT (CONJ ) (PP (NP (D ) (N )) (P )) (NP-SBJ *

2 2.1 NPCMJ (  (Santorini, 2010) (NPCMJ, 2016) (1) (, 2016) (1) (2) (1) ( (IP-MAT (CONJ ) (PP (NP (D ) (N )) (P )) (NP-SBJ * Emacs Emacs : Emacs 1 Emacs Emacs ( ) (NPCMJ ) 1 Emacs NPCMJ 2 1 2 2.1 NPCMJ (http://npcmj.ninjal.ac.jp/) (Santorini, 2010) (NPCMJ, 2016) (1) (, 2016) (1) (2) (1) ( (IP-MAT (CONJ ) (PP (NP (D ) (N )) (P

More information

Si-R30コマンドリファレンス

Si-R30コマンドリファレンス 8 8.1 SNMP ( ) 8.1.1 snmp service ( ) SNMP SNMP snmp service on SNMP SNMP off SNMP SNMP SNMP SNMP Si-R30 SNMP snmp service off 171 8.1.2 snmp agent contact ( ) SNMP snmp agent contact []

More information

0_テキストマイニング環境構築_mac

0_テキストマイニング環境構築_mac 本実験で利 するソフトウェア Anaconda 5.0.0 Python 本体及び数値計算ライブラリや開発環境 をセットにしたパッケージ MeCab IPA 辞書 NAIST Japanese Dictionary mecab-ipadic-neologd Natto-py 日本語形態素解析器 Mecab 用辞書 Mecab 用辞書 Mecab 用辞書 Python から MeCab を利用するためのライブラ

More information

1.... 1 2.... 1 2.1. RATS... 1 2.1.1. expat... 1 2.1.2. expat... 1 2.1.3. expat... 2 2.2. RATS... 2 2.2.1. RATS... 2 2.2.2.... 3 3. RATS... 4 3.1.... 4 3.2.... 4 3.3.... 6 3.3.1.... 6 3.3.2.... 6 3.3.3....

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション TEL:045-866-8114 E-Mail: s-masui@msa.hitachi-sk.co.jp TEL:03-3491-7688 E-Mail: improj@pmcnet.co.jp PMC ( ) http://www.pmcnet.co.jp PS PS PS etc. etc. etc. W3C DOM XML XML B2 Enterprise Publisher

More information

2009 Aida et al. Caries Res 2006;40 2000 100 % 78.7 88.0 96.6 98.8 98.8 98.8 100.0 100.0 100 75 69.4 50 75.3 74.8 73.3 73.1 73.0 72.4 71.8 71.7 51.7 40.2 69.4 68.8 73.6 25 22.3 32.8 21.9 22.9 22.1

More information

2015 I ( TA)

2015 I ( TA) 2015 I ( TA) Schrödinger PDE Python u(t, x) x t 2 u(x, t) = k u(t, x) t x2 k k = i h 2m Schrödinger h m 1 ψ(x, t) i h ( 1 ψ(x, t) = i h ) 2 ψ(x, t) t 2m x Cauchy x : x Fourier x x Fourier 2 u(x, t) = k

More information

[1] install PY2 PY3 Fabric & Invoke Quick Guide Invoke : Python で記述するタスクランナー Fabric : SSH を使うデプロイタスクランナー Fabric, Invoke 2018 Jeff Forcier. BSD 2-Claus

[1] install PY2 PY3 Fabric & Invoke Quick Guide Invoke : Python で記述するタスクランナー Fabric : SSH を使うデプロイタスクランナー Fabric, Invoke 2018 Jeff Forcier. BSD 2-Claus [1] install PY2 PY3 Fabric & Invoke Quick Guide Invoke : Python で記述するタスクランナー Fabric : SSH を使うデプロイタスクランナー Fabric, Invoke 2018 Jeff Forcier. BSD 2-Clause "Simplified" License $ pip install invoke fabric

More information

人工知能学会研究会資料 SIG-KBS-B Analysis of Voting Behavior in One Night Werewolf 1 2 Ema Nishizaki 1 Tomonobu Ozaki Graduate School of Integrated B

人工知能学会研究会資料 SIG-KBS-B Analysis of Voting Behavior in One Night Werewolf 1 2 Ema Nishizaki 1 Tomonobu Ozaki Graduate School of Integrated B 人工知能学会研究会資料 SIG-KBS-B508-09 Analysis of Voting Behavior in One Night Werewolf 1 2 Ema Nishizaki 1 Tomonobu Ozaki 2 1 1 Graduate School of Integrated Basic Sciences, Nihon University 2 2 College of Humanities

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

nakayama15icm01_l7filter.pptx

nakayama15icm01_l7filter.pptx Layer-7 SDN SDN NFV 50 % 3 MVNO 1 2 ICM @ 2015/01/16 2 1 1 2 2 1 2 2 ICM @ 2015/01/16 3 2 Service Dependent Management (SDM) SDM Simple Management of Access-Restriction Translator Gateway (SMART-GW) ICM

More information

第1回日本産婦人科

第1回日本産婦人科 e e TEL045-231-0960 TEL03-3433-1111 3360 4 2 1 1024768 OS RGB -15pins Dsub-15pins PowerPoint PC WindowsXPMicrosoft PowerPoint2002 Microsoft Power Point ( PC ) Windows USB CD-R PC 30 PC PC 36

More information