• Title/Summary/Keyword: 성과중심 평가

Search Result 1,447, Processing Time 0.031 seconds

Re-Analysis of Clark Model Based on Drainage Structure of Basin (배수구조를 기반으로 한 Clark 모형의 재해석)

  • Park, Sang Hyun;Kim, Joo Cheol;Jeong, Dong Kug;Jung, Kwan Sue
    • KSCE Journal of Civil and Environmental Engineering Research
    • /
    • v.33 no.6
    • /
    • pp.2255-2265
    • /
    • 2013
  • This study presents the width function-based Clark model. To this end, rescaled width function with distinction between hillslope and channel velocity is used as time-area curve and then it is routed through linear storage within the framework of not finite difference scheme used in original Clark model but analytical expression of linear storage routing. There are three parameters focused in this study: storage coefficient, hillslope velocity and channel velocity. SCE-UA, one of the popular global optimization methods, is applied to estimate them. The shapes of resulting IUHs from this study are evaluated in terms of the three statistical moments of hydrologic response functions: mean, variance and the third moment about the center of IUH. The correlation coefficients to the three statistical moments simulated in this study against these of observed hydrographs were estimated at 0.995 for the mean, 0.993 for the variance and 0.983 for the third moment about the center of IUH. The shape of resulting IUHs from this study give rise to satisfactory simulation results in terms of the mean and variance. But the third moment about the center of IUH tend to be overestimated. Clark model proposed in this study is superior to the one only taking into account mean and variance of IUH with respect to skewness, peak discharge and peak time of runoff hydrograph. From this result it is confirmed that the method suggested in this study is useful tool to reflect the heterogeneity of drainage path and hydrodynamic parameters. The variation of statistical moments of IUH are mainly influenced by storage coefficient and in turn the effect of channel velocity is greater than the one of hillslope velocity. Therefore storage coefficient and channel velocity are the crucial factors in shaping the form of IUH and should be considered carefully to apply Clark model proposed in this study.

The Yellow Sea Ecoregion Conservation Project : the Present Situation and its Implications (황해생태지역 보전사업 추진현황 및 시사점)

  • Kim, Gwang Tae;Choi, Young Rae;Jang, Ji Young;Kim, Woong-Seo
    • Journal of the Korean Society for Marine Environment & Energy
    • /
    • v.15 no.4
    • /
    • pp.337-348
    • /
    • 2012
  • The Yellow Sea Ecoregion Conservation Project is a joint international project which is carried out under the purposes of conserving the habitats in the Yellow Sea Ecoregion and biodiversity from various threats that damage ecosystems, informing the importance and value of the Yellow Sea Ecoregion, and promoting the understanding and interests of Korea, China and Japan. Subsequent to the Yellow Sea Ecoregion Planning Programme which had been performed during the period from 2002 to 2006, the Yellow Sea Ecoregion Support Project has been performed over 7 years in total from 2007 to 2014. Panasonic is sponsoring the financing of the project, and the organizations in charge of the project by country are Korea Institute of Ocean Science & Technology for Korea and World Wide Fund for Nature branches for China and Japan. While the Yellow Sea Ecoregion Planning Programme was focused on the biological assessment and the selection of potential priority area by scientific review, the Yellow Sea Ecoregion Support Project is oriented toward practical activities targeting more diversified stakeholder. Especially, this project plans to support direct conservation activities in the region and participation and cooperation from local residents. The project plan is comprised of 3 phases. During the first period from 2008 to 2009, small grant projects were operated targeting 16 institutions of Korea and China, and for the second period from 2010 to 2012, one place each was selected as demonstration site for habitat conservation in Korea and China respectively and supported for three years to introduce the conservation method based on international standards such as the management of marine protected areas, ecosystem-based management and community-based management and simultaneously to develop habitat conservation activities suitable for national and regional characteristics. During the period from 2013 to 2014 which is the last phase, the project plans to distribute the performance of small grant projects and demonstration site activities through a series of forums among stakeholder. Through the activities described above, the recognition of general public on the conservation of the Yellow Sea Ecoregion was changed positively, and community-based management began to be reflected in the policies for the marine protected areas of central and local government.

Comparison of Deep Learning Frameworks: About Theano, Tensorflow, and Cognitive Toolkit (딥러닝 프레임워크의 비교: 티아노, 텐서플로, CNTK를 중심으로)

  • Chung, Yeojin;Ahn, SungMahn;Yang, Jiheon;Lee, Jaejoon
    • Journal of Intelligence and Information Systems
    • /
    • v.23 no.2
    • /
    • pp.1-17
    • /
    • 2017
  • The deep learning framework is software designed to help develop deep learning models. Some of its important functions include "automatic differentiation" and "utilization of GPU". The list of popular deep learning framework includes Caffe (BVLC) and Theano (University of Montreal). And recently, Microsoft's deep learning framework, Microsoft Cognitive Toolkit, was released as open-source license, following Google's Tensorflow a year earlier. The early deep learning frameworks have been developed mainly for research at universities. Beginning with the inception of Tensorflow, however, it seems that companies such as Microsoft and Facebook have started to join the competition of framework development. Given the trend, Google and other companies are expected to continue investing in the deep learning framework to bring forward the initiative in the artificial intelligence business. From this point of view, we think it is a good time to compare some of deep learning frameworks. So we compare three deep learning frameworks which can be used as a Python library. Those are Google's Tensorflow, Microsoft's CNTK, and Theano which is sort of a predecessor of the preceding two. The most common and important function of deep learning frameworks is the ability to perform automatic differentiation. Basically all the mathematical expressions of deep learning models can be represented as computational graphs, which consist of nodes and edges. Partial derivatives on each edge of a computational graph can then be obtained. With the partial derivatives, we can let software compute differentiation of any node with respect to any variable by utilizing chain rule of Calculus. First of all, the convenience of coding is in the order of CNTK, Tensorflow, and Theano. The criterion is simply based on the lengths of the codes and the learning curve and the ease of coding are not the main concern. According to the criteria, Theano was the most difficult to implement with, and CNTK and Tensorflow were somewhat easier. With Tensorflow, we need to define weight variables and biases explicitly. The reason that CNTK and Tensorflow are easier to implement with is that those frameworks provide us with more abstraction than Theano. We, however, need to mention that low-level coding is not always bad. It gives us flexibility of coding. With the low-level coding such as in Theano, we can implement and test any new deep learning models or any new search methods that we can think of. The assessment of the execution speed of each framework is that there is not meaningful difference. According to the experiment, execution speeds of Theano and Tensorflow are very similar, although the experiment was limited to a CNN model. In the case of CNTK, the experimental environment was not maintained as the same. The code written in CNTK has to be run in PC environment without GPU where codes execute as much as 50 times slower than with GPU. But we concluded that the difference of execution speed was within the range of variation caused by the different hardware setup. In this study, we compared three types of deep learning framework: Theano, Tensorflow, and CNTK. According to Wikipedia, there are 12 available deep learning frameworks. And 15 different attributes differentiate each framework. Some of the important attributes would include interface language (Python, C ++, Java, etc.) and the availability of libraries on various deep learning models such as CNN, RNN, DBN, and etc. And if a user implements a large scale deep learning model, it will also be important to support multiple GPU or multiple servers. Also, if you are learning the deep learning model, it would also be important if there are enough examples and references.

Development of a Real-Time Mobile GIS using the HBR-Tree (HBR-Tree를 이용한 실시간 모바일 GIS의 개발)

  • Lee, Ki-Yamg;Yun, Jae-Kwan;Han, Ki-Joon
    • Journal of Korea Spatial Information System Society
    • /
    • v.6 no.1 s.11
    • /
    • pp.73-85
    • /
    • 2004
  • Recently, as the growth of the wireless Internet, PDA and HPC, the focus of research and development related with GIS(Geographic Information System) has been changed to the Real-Time Mobile GIS to service LBS. To offer LBS efficiently, there must be the Real-Time GIS platform that can deal with dynamic status of moving objects and a location index which can deal with the characteristics of location data. Location data can use the same data type(e.g., point) of GIS, but the management of location data is very different. Therefore, in this paper, we studied the Real-Time Mobile GIS using the HBR-tree to manage mass of location data efficiently. The Real-Time Mobile GIS which is developed in this paper consists of the HBR-tree and the Real-Time GIS Platform HBR-tree. we proposed in this paper, is a combined index type of the R-tree and the spatial hash Although location data are updated frequently, update operations are done within the same hash table in the HBR-tree, so it costs less than other tree-based indexes Since the HBR-tree uses the same search mechanism of the R-tree, it is possible to search location data quickly. The Real-Time GIS platform consists of a Real-Time GIS engine that is extended from a main memory database system. a middleware which can transfer spatial, aspatial data to clients and receive location data from clients, and a mobile client which operates on the mobile devices. Especially, this paper described the performance evaluation conducted with practical tests if the HBR-tree and the Real-Time GIS engine respectively.

  • PDF

, the Cinema of Attractions (<디 워>, 매혹의 영화)

  • Ryu, Jae Hyung
    • Cartoon and Animation Studies
    • /
    • s.29
    • /
    • pp.209-241
    • /
    • 2012
  • Is a failed blockbuster film? Is there no room for reconsideration of the value of the film in terms of its contents and forms? The purpose of this study is to answer these questions. In 2007, SHIM Hyung-rae's was in the limelight due to the nationalist discourse around the film rather than evaluation of the film itself. In terms of its narrative and formal properties, the film showed the difference from the Korean nationalist blockbuster films. It led to the disaccord and hard-to-understand results of having somewhat disappointed box-office success of 8,500,000 audiences in comparison to the input, of receiving well by a generous part of the audiences absorbed by nationalism, and of getting the critics' cynic criticism of the film's cinematic value. Eventually only provided the cultural battlefield of nationalism, was left as an unnoticed film in the realm of industry and criticism. However, it was interesting that there was a common ground between the film's supporters and the cynic critics. Both sides were being acknowledged that the spectacle of was way out of proportion to the degree that the spectacle was unbalanced with the story unfolding, achieved more than expected. Its spectacle overwhelming the narrative enfever a few audiences, and at the same time, it provided some reasons making critics face away from the film. In this context, the purpose of this study is to examine 's aesthetics that 'the spectacle dominating narrative' or 'the narrative as a pretext for showing spectacle,' leading to discussion of artistic/theoretical/critical value and to find out cinematic value of the film being regarded as a failure. In addition, this study is significant in that it suggests that is a new kind of moving image that it cannot be analyzed with existed critical methods of narrative film criticism; as a result, this study provides the chance to be evaluated through a new conceptual frame of the film. In order to grasp the narratological aesthetics, this study focuses on the concept of trickality that Andre Gaudreault suggests, and Tom Gunning's 'the cinema of attractions,' referring to the spectacle-oriented narrativity or the mode of production displaying the spectacle more than the narrative.

Attitudes to Safety of Genetically Modified Foods in Korea -Focus on Consumers- (유전자재조합 식품의 안전성에 대한 기본인식 조사 -일반 소비자를 중심으로 _)

  • 김영찬;박경진;김성조;강은영;김동연
    • Journal of Food Hygiene and Safety
    • /
    • v.16 no.1
    • /
    • pp.66-75
    • /
    • 2001
  • A survey was conducted to investigate consumers'attitudes toward the foods developed by gene recombination techniques from December, 1999 to April, 2000. The questionnaires were mailed to 1,500 people, and the 1,101 people responded. The consumers were asked about knowledge, acceptance, intention of purchasing, and labeling information. Although the portion of the consumers (88.8%) knowing the genetically modified floods (GMF) was lower than that of the flood expert group (98.7%), many consumers had some knowledge on the GMF, which may be influenced by news released from mass media. Seventy-nine percent of the consumers responded that gene recombination technology is necessary in food production, which is similar to the findings on the survey of the expert group. The portion of the consumers responding that these foods are potentially hazard was 88.1%, which is a little higher than the data (80.9%) from the expert group. The consumers having greater knowledge less worried about a potential hazard of the gene recombinant foods (p<0.01). Although 62.9% of the consumers responded to be willing to purchase those foods, only 16.2% of them responded to purchase the foods with no conditions, which is lower to that from the expert group (23.5%). There was no statistically significant relationship between the knowledge and the intention of purchasing. The ninety point three percent of the consumers wanted the information on gene recombination to be labeled on the foods. The data from this survey suggest that knowledge of the consumers on the GMF are not accurate, so proper strategy for consumer education may need to be developed. In addition, it is necessary to improve safety assessment system and analytical techniques for genetically modified foods (GMF) and to build pre- and post-market surveillance system fur efficient implementation of the GMF labeling.

  • PDF

Differences in Ability to Predict the Success of Motor Action According to Dance Expertise - Focusing on Pirouette En Dehors (무용 숙련성에 따른 동작결과예측 능력의 차이: 삐루엣 앙 디올 동작을 중심으로)

  • Han, Siwan;Ryu, Je-Kwang;Yi, Woojong;Yang, Jonghyun
    • Korean Journal of Cognitive Science
    • /
    • v.29 no.2
    • /
    • pp.121-135
    • /
    • 2018
  • Dancers' motions are perceived by observers through visual processes with visual information forming the basis for the observers' appreciation and evaluation of the dancers' motions. There have been many discussions as to whether or not observers' personal athletic capabilities form an essential basis for accurate assessment of the motions of others but, so far, no valid conclusions have been reached. The purpose of this study is to investigate how the ability to predict motions of others varies depending on the athletic expertise of the observers. Participants of this research were ballet dancers of varying athletic expertise. Twenty seven participants were divided into three groups with nine in each: beginners, intermediate experts and experts. The participants watched the same dance video and then evaluated whether the motion would be successful or not. The movement related visual information required to evaluate the success of the motion was systematically adjusted by controlling the length of the video. Using the temporal occlusion method, this study measured the response accuracy of the participants by category of expertise. Under the circumstance with insufficient visual information to utilize, the experts showed higher rates of correct response than the intermediate experts and the beginners. The beginners showed higher rates of wrong response than the experts and the intermediate experts. These results showed that the ability to predict success or failure of a dance motion varied depending on motion expertise of the observers, although they had similar level of expertise in perception. Participants considered to have high athletic expertise showed high prediction ability on the result of the motion. In addition, high expertise in perception reduced the likelihood that participants would make hasty responses under the circumstance with insufficient information and helped to reduce wrong response rate. In conclusion, this study showed that motor expertise and perceptual expertise contribute to prediction accuracy of observed motions.

The Aspects of Small Group Decision-making Process based on Reading News Reports: Focused on Climate Change related Socio-scientific Issues Activity (신문기사 읽기를 활용한 소집단 의사결정 과정 양상 -기후변화 관련 사회적 논쟁 활동을 중심으로-)

  • Kim, Jong-Uk;Gwak, Je-Yeon;Kwon, Ji-Yeon;Ha, Yoon-Hee;Lee, Jeong-A;Kim, Chan-Jong;Choe, Seung-Urn
    • Journal of The Korean Association For Science Education
    • /
    • v.38 no.2
    • /
    • pp.203-217
    • /
    • 2018
  • The research objective of this study is to analyze the aspects of small group decision-making process based on reading news reports in the context of the socio-scientific issues (SSI) activity related to climate change. Twenty-two high school students from Gyeonggi Province, South Korea, were asked to read two news reports on the UN climate change conferences and take a stance on joining the Paris Agreement both as an individual and as a small group. The news reports were analyzed in terms of genre, discourse, and style adapting the critical discourse analysis (CDA) and the decision-making processes of the small groups were examined on recognizing a problem and evaluating alternatives and decisions. The results from analyzing the news reports denoted that the Paris agreement is not only related to finding ideal solutions to climate change, but rather, connected to political or economic interests and power relationship. In the stage of recognizing a problem, meanwhile, different frames which students recognize the Paris agreement and discourses in the foreground of the news reports were the critical causes in terms of identifying the problem. In the stage of evaluating alternatives and decisions, the equity and fairness were the criteria for the small group discussions. This study implies the necessity of the scientific literacy instruction to develop the ability to critical reading in the context of the SSI.

Understanding the Legal Structure of German Human Gene Testing Act (GenDG) (독일 유전자검사법의 규율 구조 이해 - 의료 목적 유전자검사의 문제를 중심으로 -)

  • Kim, Na-Kyoung
    • The Korean Society of Law and Medicine
    • /
    • v.17 no.2
    • /
    • pp.85-124
    • /
    • 2016
  • The Human gene testing act (GenDG) in Germany starts from the characteristic features of gene testing, i.e. dualisting structure consisted of anlaysis on the one side and the interpretation on the other side. The linguistic distincion of 'testing', 'anlaysis' and 'judgment' in the act is a fine example. Another important basis of the regulation is the ideological purpose of the law, that is information autonomy. The normative texts as such and the founding principle are the basis of the classification of testing types. Especially in the case of gene testing for medical purpose is classified into testing for diagnostic purpose and predictive purpose. However, those two types are not always clearly differentiated because the predictive value of testing is common in both types. In the legal regulation of gene testing it is therefore important to manage the uncertainty and subjectivity which are inherent in the gene-analysis and the judgment. In GenDG the system ensuring the quality of analysis is set up and GEKO(Commity for gene tisting) based on the section 23 of GenDG concretes the criterium of validity through guidelines. It is also very important in the case of gene testing for medical purpose to set up the system for ensurement of procedural rationality of the interpretation. The interpretation of the results of analysis has a wide spectrum because of the consistent development of technology on the one side and different understandings of different subjects who performs gene testings. Therefore the process should include the communication process for patients in oder that he or she could understand the meaning of gene testing and make plans of life. In GenDG the process of genetic counselling and GEKO concretes the regulation very precisely. The regulation as such in GenDG seems to be very suggestive to Korean legal polic concerning the gene testing.

  • PDF

A Study on Location Selection for Rainwater Circulation System Elements at a City Level - Focusing on the Application of the Environmental and Ecological Plan of a Development - (도시차원의 빗물순환체계 요소별 입지선정에 관한 연구 - 개발예정지역의 환경생태계획 적용방안을 중심으로 -)

  • Kim, Hyo-Min;Kim, Kwi-Gon
    • Journal of the Korean Institute of Landscape Architecture
    • /
    • v.40 no.3
    • /
    • pp.1-11
    • /
    • 2012
  • This study focused on establishing a natural rainwater circulation system using rainwater meant for relatively large urban development projects such as a new town development. In particular, when the location selection techniques for individual elements of a natural rainwater circulation system are developed for the integrated rainwater management, changes in hydrological environment will be minimized and the natural water circulation would be restored to realize the low impact development (LID). In that case, not only the excess will be reduced but water space and green areas in a city would also increase to improve the urban sustainability. First of all, there were five elements selected for the location selection of a rainwater circulation system intended for the integrated rainwater management: rainwater collection, infiltration, filtration, retention and movement spaces. After generating these items, the location selection items and criteria were defined for each of the five elements. For a technique to apply the generated evaluation items and criteria, a grid cell analysis was conducted based m the suitability index theory, and thematic maps were overlapped through suitability assessment of each element and graded based on the suitability index. The priority areas were identified for each element. The developed technique was applied to a site where Gim-cheon Innovation City development is planned to review its feasibility and limitations. The combined score of the overlapped map for each element was separated into five levels: very low, low, moderate, high and very high. Finally, it was concluded that creating a rainwater circulation system conceptual map m the current land use plan based on the outcome of the application would be useful in building a water circulation system at the de1ailed space planning stage after environmental and ecological planning. Furthermore, we use the results of this study as a means for environment-friendly urban planning for sustainable urban development.