著者
平井 宏典
出版者
和光大学社会経済研究所
雑誌
和光経済 = Wako Keizai (ISSN:02865866)
巻号頁・発行日
vol.47, no.3, pp.45-52, 2015-03

In recent years, "Regional Collaboration" has been keyword in Museum Management Theory Studies in Japan. It is suggested that the important factor to build a win-win relationship between the community and museum is to reach out to wider(range) variety of stakeholders of the museum. In particular, it is expected that museum will take a new social role in making a major influence in the "economical impact" toward the region.This paper clarifies that institutional aspects have given significant impact in the historical transition of Museum Management Theory, and the economical impact from the viewpoint of Cultural Economics Studies is attracting many attentions.
著者
ドーソン ウォルター P. Walter P. Dawson
雑誌
国際基督教大学学報. I-A, 教育研究 = Educational Studies
巻号頁・発行日
vol.49, pp.91-98, 2007-03-31

アメリカ占領時代に試みられた日本における教育制度の民主化から半世紀以上が経過したが,日本の学校現場における政治的民主化は殆ど問われていない.本論では日本の中学校を対象に行われたフィールドワークに基づいた理論研究であり,特別活動における教師の指導と学校という政治的縮図における政治的社会化の関係を説明する新しい理論を提示することを試みる.理論的枠組みとして,フーコーの「統治性」やベネディクト・アンダーソンの「想像の共同体」及びロラン・バルトの「神話作用」などを用いて,義務づけられた特別活動によって民主主義社会における自律的市民を育成するという矛盾を問い直す.特別活動に埋め込まれている政治的イデオロギーの受け手である学生の役割を強調することによって,機能主義的なアプローチの弱点に焦点をあて,「教育の神話作用」という新しい理論を提示する.Over 50 years have passed since the American Occupation's efforts to democratize the education system and wider Japanese society, although there has been little study of political socialization in Japanese schools. This paper based on field work conducted in a Japanese middle school attempts to present a new theory to explain teachers' approaches to guidance in student government activities and the resulting processes of political socialization in the Japanese middle school as a political microcosm. A Foucauldian analysis of findings centered around "governmentality" combined with the concepts of "Imagined Communities" (Benedict Anderson) and "mythologies" (Roland Barthes) was utilized to attempt to explain the contradictions present in an effort to produce the autonomous citizens of a modern democracy by way of compulsory political education activities groups. The result is a new theory of political socialization in schools titled "mythologies of education" which attempts to address weaknesses in functionalist explanations of socialization by emphasizing the agency of the subject/student who is the recipient of the political ideologies embedded in student government activities.
著者
金 成主 青野 真士 原 正彦
出版者
一般社団法人電子情報通信学会
雑誌
電子情報通信学会技術研究報告. NC, ニューロコンピューティング (ISSN:09135685)
巻号頁・発行日
vol.110, no.83, pp.19-24, 2010-06-11
被引用文献数
1

単細胞アメーバ・真性粘菌Physarumの光刺激回避行動に着想を得た「綱引きモデル」という並列探索アルゴリズムを提案する。このモデルでは、アメーバの複数の分枝が、環境情報を収集する探索エージェントとして機能する。アメーバは、その総リソース量(総体積)を保存しつつ、複数の分枝を伸縮させることで光刺激を受容し、どの分枝を伸長させるかを決定する。このとき、保存則を介して生じる分枝間の「非局所的な相関」が、「多本腕バンディット問題」における"exploration-exploitation dilemma"と呼ばれるトレードオフ状況の効率的解決に寄与することを示す。また、他の分枝から伝わる光刺激情報がパフォーマンスに及ぼす影響についても報告する。
著者
白畑 有加 前田 敦司 山口 喜教
雑誌
情報処理学会論文誌プログラミング(PRO) (ISSN:18827802)
巻号頁・発行日
vol.4, no.3, pp.97-97, 2011-06-29

プログラムの処理の流れを扱う概念に,継続がある.継続とは,ある処理のある瞬間における,「次にどのような処理を行うのか」 という処理過程の未来全体を表すものである.Scheme では継続をファーストクラスの機能としてサポートしており,call/cc 関数を用いて継続を扱うことができる.しかし,そのほかほとんどのプログラミング言語は継続を明示的に扱っていない.そのような言語に継続をファーストクラスの機能とし導入する手法として CPS 変換や例外処理を用いた手法など様々な研究がなされているが,導入後の実行効率が大幅に落ちてしまうという問題点をかかえている.本発表では対象言語を JavaScript とし,Pettyjohn らの手法をもとにした新しい,継続を導入する変換手法を提案する.変換後の実行効率の向上のため,継続から処理を再開するときのコードを別途定義する.これにより継続を使用しない場合の処理は変換前後で実行速度が変わらない.また,継続による処理の再開位置を示す Resumption Point を導入することで変換後のコードの重複を削減した.さらに,本発表では継続をキャプチャするタイミングに例外処理を用いる手法と 2 返戻値法の両方を使い分ける.このハイブリッドな継続のキャプチャ手法の採用により,さらに変換後の実行効率の向上を見込むことができる.Continuation is an idea which deals with flow of control inprograms. Although Scheme has continuation as a first-class feature, most other programming languages don't support it explicitly. Various approaches have proposed to adopt the continuation as a first-class feature in such languages, e.g., CPS conversion and stack-traversal and rebuilding using exception. But these conversions have significant impact on execution efficiency and slows down the execution of programs after conversion considerably. In this presentation, we propose a new transformation algorithm based on Pettyjohn, et al.'s approach, which can introduce continuation more efficiently to programming languages that don't support them (we use JavaScript as a specific example). To improve execution efficiency after transformation, we separately generate the code run in ordinary execution and the code executed when continuation is invoked. When executed without using continuations, the execution efficiency after transformation is almost equal to the one before transformation. Since we separately generate the code for two cases, code size may increase after conversions. This code expansion is reduced by sharing code using labels called Resumption Point, which marks the point to resume when continuations are invoked. We use two techniques for stack traversal when capturing continuations: exception handling and two return values method. We combine these two techniques to get better performance in continuation capturing, and believe our approach has the advantages over existing techniques.
著者
鑓水 秀和 河原 純一郎
出版者
日本認知科学会
雑誌
認知科学 (ISSN:13417924)
巻号頁・発行日
vol.21, no.3, pp.314-324, 2014-09-01 (Released:2015-05-12)
参考文献数
24

Extant studies have examined factors contributing to perception of attractiveness of individual human faces. Because those studies primarily focused on ratings of at-tractiveness of a single target face, it was unclear whether observers could perceive attractiveness of a group of people as a whole. The present study examined whether observers could compare the group-wide attractiveness between two groups consisted of multiple members. We predicted that observers should be able to discriminate which of the two groups was higher attractiveness. Observers were briefly (1500 ms) exposed with two frames of images each of which consisted of four faces and determined the one that they believed more attractive as a whole. The results indicated that discrimination accuracy was above chance level. Virtually identical pattern of the results was obtained when each group consisted of eight faces in Experiment 3 and when exposure duration was 500 ms or 100 ms in Experiment 4. These results suggest that observers could per-ceive attractiveness of a group of people as a whole when discriminating attractiveness of two groups of people.
著者
Mariko Kobayashi Shinji Endo Yukako Hamano Mamiko Imanishi Daisuke Akutsu Akinori Sugaya Daisuke Ochi Toshikazu Moriwaki Ichinosuke Hyodo
出版者
一般社団法人 日本内科学会
雑誌
Internal Medicine (ISSN:09182918)
巻号頁・発行日
vol.55, no.2, pp.127-130, 2016 (Released:2016-01-15)
参考文献数
16
被引用文献数
1 6

Combination chemotherapy of mFOLFOX6 (5-fluorouracil, leucovorin, and oxaliplatin) plus panitumumab, a fully human monoclonal antibody against epidermal growth factor receptor (EGFR), is one of the standard treatments for metastatic colorectal cancer (mCRC) without KRAS mutation. A few reports suggested no need of dose adjustment of cetuximab, a similar chimeric anti-EGFR antibody, in patients with renal impairment. However, panitumumab combined with cytotoxic drugs for hemodialysis patients has not been reported. We herein report a case of a hemodialysis mCRC patient successfully treated with mFOLFOX6 and panitumumab combination therapy.

2 0 0 0 OA 日本の自画像

著者
竹越与三郎 著
出版者
白揚社
巻号頁・発行日
1938
著者
楊 静宏 川原 正広 五味 壮平 新貝 鉚蔵
出版者
一般社団法人 人工知能学会
雑誌
人工知能学会全国大会論文集 第20回全国大会(2006)
巻号頁・発行日
pp.2, 2006 (Released:2006-12-07)

人間乱数とは人間が作る乱数列のことである。人間が作る乱数については、その性質、構造、病気との関係、脳機能との関連など、様々な研究がなされてきた。本研究では、人間が作り出す乱数の性質がその生成方法によりどのように影響を受けるかを考察する。
著者
木村 至宏
出版者
交通史学会
雑誌
交通史研究 (ISSN:09137300)
巻号頁・発行日
no.33, pp.1-9, 1994-05-20
著者
藤田 貞一郎
出版者
同志社大学
雑誌
同志社商学 (ISSN:03872858)
巻号頁・発行日
vol.46, no.1, pp.1-18, 1994

研究
著者
金政 祐司
出版者
日本パーソナリティ心理学会
雑誌
パーソナリティ研究 (ISSN:13488406)
巻号頁・発行日
vol.22, no.2, pp.168-181, 2013-11-30 (Released:2013-12-04)
参考文献数
45
被引用文献数
2

本研究は,先行研究の3つの青年・成人期の愛着関係で示された共通項が青年期の同性の友人関係においても認められるのかについて,成人の愛着スタイル,関係内の感情経験,関係への評価の観点から検討を行った。分析対象者は,106組の青年期の友人ペアであった。その結果,愛着次元の関係不安は,回答者本人のネガティブ感情ならびにポジティブ感情と有意な正の相関関係を示していた。親密性回避は,回答者本人のネガティブ感情と有意な正の相関を,関係への評価とは有意な負の相関を,加えて,ポジティブ感情とは有意傾向の負の関連を示していた。また,上記の親密性回避と本人の関係への評価との関連は,本人のポジティブ感情によって媒介されており,これは先行研究の3つの青年・成人期の愛着関係では見られなかった傾向であった。これらの結果について,愛着システムと親和システムの観点から議論を行った。

2 0 0 0 血脈

著者
佐藤愛子著
出版者
文藝春秋
巻号頁・発行日
2005