• Title/Summary/Keyword: Level-scale Interface

Search Result 76, Processing Time 0.022 seconds

Balancing Water Supply Reliability, Flood Hazard Mitigation and Environmental Resilience in Large River Systems

  • Goodwin, Peter
    • Proceedings of the Korea Water Resources Association Conference
    • /
    • 2016.05a
    • /
    • pp.1-1
    • /
    • 2016
  • Many of the world's large ecosystems are severely stressed due to population growth, water quality and quantity problems, vulnerability to flood and drought, and the loss of native species and cultural resources. Consequences of climate change further increase uncertainties about the future. These major societal challenges must be addressed through innovations in governance, policy, and ways of implementing management strategies. Science and engineering play a critical role in helping define possible alternative futures that could be achieved and the possible consequences to economic development, quality of life, and sustainability of ecosystem services. Science has advanced rapidly during the past decade with the emergence of science communities coalescing around 'Grand Challenges' and the maturation of how these communities function has resulted in large interdisciplinary research networks. An example is the River Experiment Center of KICT that engages researchers from throughout Korea and the world. This trend has been complemented by major advances in sensor technologies and data synthesis to accelerate knowledge discovery. These factors combine to allow scientific debate to occur in a more open and transparent manner. The availability of information and improved communication of scientific and engineering issues is raising the level of dialogue at the science-policy interface. However, severe challenges persist since scientific discovery does not occur on the same timeframe as management actions, policy decisions or at the pace sometimes expected by elected officials. Common challenges include the need to make decisions in the face of considerable uncertainty, ensuring research results are actionable and preventing science being used by special interests to delay or obsfucate decisions. These challenges are explored in the context of examples from the United States, including the California Bay-Delta system. California transfers water from the wetter northern part of the state to the drier southern part of the state through the Central Valley Project since 1940 and this was supplemented by the State Water Project in 1973. The scale of these activities is remarkable: approximately two thirds of the population of Californians rely on water from the Delta, these waters also irrigate up to 45% of the fruits & vegetables produced in the US, and about 80% of California's commercial fishery species live in or migrate through the Bay-Delta. This Delta region is a global hotspot for biodiversity that provides habitat for over 700 species, but is also a hotspot for the loss of biodiversity with more than 25 species currently listed by the Endangered Species Act. Understanding the decline of the fragile ecosystem of the Bay-Delta system and the potential consequences to economic growth if water transfers are reduced for the environment, the California State Legislature passed landmark legislation in 2009 (CA Water Code SS 85054) that established "Coequal goals of providing a more reliable water supply for California and protecting, restoring, and enhancing the Delta ecosystem". The legislation also stated that "The coequal goals shall be achieved in a manner that protects and enhances the unique cultural, recreational, natural resource, and agricultural values of the Delta as an evolving place." The challenges of integrating policy, management and scientific research will be described through this and other international examples.

  • PDF

Implementing RPA for Digital to Intelligent(D2I) (디지털에서 인텔리전트(D2I)달성을 위한 RPA의 구현)

  • Dong-Jin Choi
    • Information Systems Review
    • /
    • v.21 no.4
    • /
    • pp.143-156
    • /
    • 2019
  • Types of innovation can be categorized into simplification, information, automation, and intelligence. Intelligence is the highest level of innovation, and RPA can be seen as one of intelligence. Robotic Process Automation(RPA), a software robot with artificial intelligence, is an example of intelligence that is suited for simple, repetitive, large-scale transaction processing tasks. The RPA, which is already in operation in many companies in Korea, shows what needs to be done to naturally focus on the core tasks in a situation where the need for a strong organizational culture is increasing and the emphasis is on voluntary leadership, strong teamwork and execution, and a professional working culture. The introduction was considered naturally according to the need to find. Robotic Process Automation, or RPA, is a technology that replaces human tasks with the goal of quickly and efficiently handling structural tasks. RPA is implemented through software robots that mimic humans using software such as ERP systems or productivity tools. RPA robots are software installed on a computer and are called robots by the principle of operation. RPA is integrated throughout the IT system through the front end, unlike traditional software that communicates with other IT systems through the back end. In practice, this means that software robots use IT systems in the same way as humans, repeat the correct steps, and respond to events on the computer screen instead of communicating with the system's application programming interface(API). Designing software that mimics humans to communicate with other software can be less intuitive, but there are many advantages to this approach. First, you can integrate RPA with virtually any software you use, regardless of your openness to third-party applications. Many enterprise IT systems are proprietary because they do not have many common APIs, and their ability to communicate with other systems is severely limited, but RPA solves this problem. Second, RPA can be implemented in a very short time. Traditional software development methods, such as enterprise software integration, are relatively time consuming, but RPAs can be implemented in a relatively short period of two to four weeks. Third, automated processes through software robots can be easily modified by system users. While traditional approaches require advanced coding techniques to drastically modify how they work, RPA can be instructed by modifying relatively simple logical statements, or by modifying screen captures or graphical process charts of human-run processes. This makes RPA very versatile and flexible. This RPA is a good example of the application of digital to intelligence(D2I).

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.

The Brand Personality Effect: Communicating Brand Personality on Twitter and its Influence on Online Community Engagement (브랜드 개성 효과: 트위터 상의 브랜드 개성 전달이 온라인 커뮤니티 참여에 미치는 영향)

  • Cruz, Ruth Angelie B.;Lee, Hong Joo
    • Journal of Intelligence and Information Systems
    • /
    • v.20 no.1
    • /
    • pp.67-101
    • /
    • 2014
  • The use of new technology greatly shapes the marketing strategies used by companies to engage their consumers. Among these new technologies, social media is used to reach out to the organization's audience online. One of the most popular social media channels to date is the microblogging platform Twitter. With 500 million tweets sent on average daily, the microblogging platform is definitely a rich source of data for researchers, and a lucrative marketing medium for companies. Nonetheless, one of the challenges for companies in developing an effective Twitter campaign is the limited theoretical and empirical evidence on the proper organizational usage of Twitter despite its potential advantages for a firm's external communications. The current study aims to provide empirical evidence on how firms can utilize Twitter effectively in their marketing communications using the association between brand personality and brand engagement that several branding researchers propose. The study extends Aaker's previous empirical work on brand personality by applying the Brand Personality Scale to explore whether Twitter brand communities convey distinctive brand personalities online and its influence on the communities' level or intensity of consumer engagement and sentiment quality. Moreover, the moderating effect of the product involvement construct in consumer engagement is also measured. By collecting data for a period of eight weeks using the publicly available Twitter application programming interface (API) from 23 accounts of Twitter-verified business-to-consumer (B2C) brands, we analyze the validity of the paper's hypothesis by using computerized content analysis and opinion mining. The study is the first to compare Twitter marketing across organizations using the brand personality concept. It demonstrates a potential basis for Twitter strategies and discusses the benefits of these strategies, thus providing a framework of analysis for Twitter practice and strategic direction for companies developing their use of Twitter to communicate with their followers on this social media platform. This study has four specific research objectives. The first objective is to examine the applicability of brand personality dimensions used in marketing research to online brand communities on Twitter. The second is to establish a connection between the congruence of offline and online brand personalities in building a successful social media brand community. Third, we test the moderating effect of product involvement in the effect of brand personality on brand community engagement. Lastly, we investigate the sentiment quality of consumer messages to the firms that succeed in communicating their brands' personalities on Twitter.

Design and Implementation of IoT based Low cost, Effective Learning Mechanism for Empowering STEM Education in India

  • Simmi Chawla;Parul Tomar;Sapna Gambhir
    • International Journal of Computer Science & Network Security
    • /
    • v.24 no.4
    • /
    • pp.163-169
    • /
    • 2024
  • India is a developing nation and has come with comprehensive way in modernizing its reducing poverty, economy and rising living standards for an outsized fragment of its residents. The STEM (Science, Technology, Engineering, and Mathematics) education plays an important role in it. STEM is an educational curriculum that emphasis on the subjects of "science, technology, engineering, and mathematics". In traditional education scenario, these subjects are taught independently, but according to the educational philosophy of STEM that teaches these subjects together in project-based lessons. STEM helps the students in his holistic development. Youth unemployment is the biggest concern due to lack of adequate skills. There is a huge skill gap behind jobless engineers and the question arises how we can prepare engineers for a better tomorrow? Now a day's Industry 4.0 is a new fourth industrial revolution which is an intelligent networking of machines and processes for industry through ICT. It is based upon the usage of cyber-physical systems and Internet of Things (IoT). Industrial revolution does not influence only production but also educational system as well. IoT in academics is a new revolution to the Internet technology, which introduced "Smartness" in the entire IT infrastructure. To improve socio-economic status of the India students must equipped with 21st century digital skills and Universities, colleges must provide individual learning kits to their students which can help them in enhancing their productivity and learning outcomes. The major goal of this paper is to present a low cost, effective learning mechanism for STEM implementation using Raspberry Pi 3+ model (Single board computer) and Node Red open source visual programming tool which is developed by IBM for wiring hardware devices together. These tools are broadly used to provide hands on experience on IoT fundamentals during teaching and learning. This paper elaborates the appropriateness and the practicality of these concepts via an example by implementing a user interface (UI) and Dashboard in Node-RED where dashboard palette is used for demonstration with switch, slider, gauge and Raspberry pi palette is used to connect with GPIO pins present on Raspberry pi board. An LED light is connected with a GPIO pin as an output pin. In this experiment, it is shown that the Node-Red dashboard is accessing on Raspberry pi and via Smartphone as well. In the final step results are shown in an elaborate manner. Conversely, inadequate Programming skills in students are the biggest challenge because without good programming skills there would be no pioneers in engineering, robotics and other areas. Coding plays an important role to increase the level of knowledge on a wide scale and to encourage the interest of students in coding. Today Python language which is Open source and most demanding languages in the industry in order to know data science and algorithms, understanding computer science would not be possible without science, technology, engineering and math. In this paper a small experiment is also done with an LED light via writing source code in python. These tiny experiments are really helpful to encourage the students and give play way to learn these advance technologies. The cost estimation is presented in tabular form for per learning kit provided to the students for Hands on experiments. Some Popular In addition, some Open source tools for experimenting with IoT Technology are described. Students can enrich their knowledge by doing lots of experiments with these freely available software's and this low cost hardware in labs or learning kits provided to them.

The Influence of Store Environment on Service Brand Personality and Repurchase Intention (점포의 물리적 환경이 서비스 브랜드 개성과 재구매의도에 미치는 영향)

  • Kim, Hyoung-Gil;Kim, Jung-Hee;Kim, Youn-Jeong
    • Journal of Global Scholars of Marketing Science
    • /
    • v.17 no.4
    • /
    • pp.141-173
    • /
    • 2007
  • The study examines how the environmental factors of store influence service brand personality and repurchase intention in the service environment. The service industry has been experiencing the intensified competition with the industry's continuous growth and the influence from rapid technological advancement. Under the circumstances, it has become ever more important for the brand competitiveness to be distinctively recognized against competition. A brand needs to be distinguished and differentiated from competing companies because they are all engaged in the similar environment of the service industry. The differentiation of brand achievement has become increasingly important to highlight certain brand functions to include emotional, self-expressive, and symbolic functions since the importance of such functions has been further emphasized in promoting consumption activities. That is the recent role of brand personality that has been emphasized in the service industry. In other words, customers now freely and actively express their personalities or egos in consumption activities, taking an important role in construction of a brand asset. Hence, the study suggests that it is necessary to disperse the recognition and acknowledgement that the maintenance of the existing customers contributes more to boost repurchase intention when it is compared to the efforts to create new customers, particularly in the service industry. Meanwhile, the store itself can offer a unique environment that may influence the consumer's purchase decision. Consumers interact with store environments in the process of,virtually, all household purchase they make (Sarel 1981). Thus, store environments may encourage customers to purchase. The roles that store environments play are to provide informational cues to customers about the store and goods and communicate messages to stimulate consumers' emotions. The store environments differentiate the store from competing stores and build a unique service brand personality. However, the existing studies related to brand in the service industry mostly concentrated on the relationship between the quality of service and customer satisfaction, and they are mostly generalized while the connective studies focused on brand personality. Such approaches show limitations and are insufficient to investigate on the relationship between store environment and brand personality in the service industry. Accordingly, the study intends to identify the level of contribution to the establishment of brand personality made by the store's physical environments that influence on the specific brand characteristics depending on the type of service. The study also intends to identify what kind of relationships with brand personality exists with brand personality while being influenced by store environments. In addition, the study intends to make meaningful suggestions to better direct marketing efforts by identifying whether a brand personality makes a positive influence to induce an intention for repurchase. For this study, the service industry is classified into four categories based on to the characteristics of service: experimental-emotional service, emotional -credible service, credible-functional service, and functional-experimental service. The type of business with the most frequent customer contact is determined for each service type and the enterprise with the highest brand value in each service sector based on the report made by the Korea Management Association. They are designated as the representative of each category. The selected representatives are a fast-food store (experimental-emotional service), a cinema house (emotional-credible service), a bank (credible-functional service), and discount store (functional-experimental service). The survey was conducted for the four selected brands to represent each service category among consumers who are experienced users of the designated stores in Seoul Metropolitan City and Gyeonggi province via written questionnaires in order to verify the suggested assumptions in the study. In particular, the survey adopted 15 scales, which represent each characteristic factor, among the 42 unique characteristics developed by Jennifer Aaker(1997) to assess the brand personality of each service brand. SPSS for Windows Release 12.0 and LISREL were used in the analysis of data verification. The methodology of the structural equation model was used for the study and the pivotal findings are as follows. 1) The environmental factors ware classified as design factors, ambient factors, and social factors. Therefore, the validity of measurement scale of Baker et al. (1994) was proved. 2) The service brand personalities were subdivided as sincerity, excitement, competence, sophistication, and ruggedness, which makes the use of the brand personality scales by Jennifer Aaker(1997) appropriate in the service industry as well. 3) One-way ANOVA analysis on the scales of store environment and service brand personality showed that there exist statistically significant differences in each service category. For example, the social factors were highest in discount stores, while the ambient factors and design factors were highest in fast-food stores. The discount stores were highest in the sincerity and excitement, while the highest point for banks was in the competence and ruggedness, and the highest point for fast-food stores was in the sophistication, The consumers will make a different respond to the physical environment of stores and service brand personality that are inherent to the corresponding service interface. Hence, the customers will make a different decision-making when dealing with different service categories. In this aspect, the relationships of variables in the proposed hypothesis appear to work in a different way depending on the exposed service category. 4) The store environment factors influenced on service brand personalities differently by category of service. The factors of store's physical environment are transferred to a brand and were verified to strengthen service brand personalities. In particular, the level of influence on the service brand personality by physical environment differs depending on service category or dimension, which indicates that there is a need to apply a different style of management to a different service category or dimension. It signifies that there needs to be a brand strategy established in order to positively influence the relationship with consumers by utilizing an appropriate brand personality factor depending on different characteristics by service category or dimension. 5) The service brand personalities influenced on the repurchase intention. Especially, the largest influence was made in the sophistication dimension of service brand personality scale; the unique and characteristically appropriate arrangement of physical environment will make customers stay in the service environment for a long time and will lead to give a positive influence on the repurchase intention. 6) The store environment factors influenced on the repurchase intention. Particularly, the largest influence was made on the social factors of store environment. The most intriguing finding is that the service factor among all other environment factors gives the biggest influence to the repurchase intention in most of all service types except fast-food stores. Such result indicates that the customers pay attention to how much the employees try to provide a quality service when they make an evaluation on the service brand. At the same time, it also indicates that the personal factor is directly transmitted to the construction of brand personality. The employees' attitude and behavior are the determinants to establish a service brand personality in the process of enhancing service interface. Hence, there should be a reinforced search for a method to efficiently manage the service staff who has a direct contact with customers in order to make an affirmative improvement of the customers' brand evaluation at the service interface. The findings suggest several managerial implications. 1) Results from the empirical study indicated that store environment factors have a strong positive impact on a service brand personality. To increase customers' repurchase intention of a service brand, the management is required to effectively manage store environment factors and create a friendly brand personality based on the corresponding service environment. 2) Mangers and researchers must understand and recognize that the store environment elements are important marketing tools, and that brand personality influences on consumers' repurchase intention. Based on such result of the study, a service brand could be utilized as an efficient measure to achieve a differentiation by enforcing the elements that are most influential among all other store environments for each service category. Therefore, brand personality established involving various store environments will further reinforce the relationship with customers through the elevated brand identification of which utilization to induce repurchase decision can be used as an entry barrier. 3) The study identified the store environment as a component of service brand personality for the store's effective communication with consumers. For this, all communication channels should be maintained with consistency and an integrated marketing communication should be executed to efficiently approach to a larger number of customers. Mangers and researchers must find strategies for aligning decisions about store environment elements with the retailers' marketing and store personality objectives. All ambient, design, and social factors need to be orchestrated so that consumers can take an appropriate store personality. In this study, the induced results from the previous studies were extended to the service industry so as to identify the customers' decision making process that leads to repurchase intention and a result similar to those of the previous studies. The findings suggested several theoretical and managerial implications. However, the situation that only one service brand served as the subject of analysis for each service category, and the situation that correlations among store environment elements were not identified, as well as the problem of representation in selection of samples should be considered and supplemented in the future when further studies are conducted. In addition, various antecedents and consequences of brand personality must be looked at in the aspect of the service environment for further research.

  • PDF