• Title/Summary/Keyword: open code

Search Result 557, Processing Time 0.027 seconds

Landscape Composition Based on Placement and Harmony in the Namgea Suhwon (치(置)와 화(和)의 개념으로 분석한 남계서원의 경관짜임)

  • Rho, Jae-Hyun;Shin, Sang-Sup
    • Journal of the Korean Institute of Landscape Architecture
    • /
    • v.37 no.4
    • /
    • pp.72-85
    • /
    • 2009
  • This study attempts to examine the principles of landscape composition for a 'Suhwon(書院)' and the meaning and value of its traditional landscape architecture, in order to apply the results to the design of modern landscape architecture. A 'Suhwon' is a vital space containing the form and meaning of human activity. This study analyzes the characteristics of landscape composition in the construction of the Namgea Suhwon, located in Hamyang, by examining the form and meaning of its area and composition. The Namgea Suhwon was constructed with a suitable configuration and harmony in a good location, neither field nor mountain, and which encompasses transcendence and a return after passage through a period of birth and abundance. Its appearance means 'life existence and hidden death(生居死幽)'. Its spatial system is a reflection of the idea of Samshinoje(三神五帝: The three abilities of Providence and its five subjects) connected with Ilsangje -Samshin -Ohje. It was built based on the idea of Biryebudong(非禮不動) meaning that one should follow only good decorum and avoid discourtesy, complying with "the frame of decorum" developed by the family rites of Chu Hsi. The environmental design of the Namgea Suhwon was interrupted by the material confrontation between mountains and water and a binary code system, such as front to rear, length to breadth, and movement to stillness. The design did not adhere to stiff axes, but pursued the harmonic principles of asymmetric balance in the building and the yard, which are very naturalistic. The name 'Namgea Suhwon' is closely related with the view of placement(置) and harmony(和), which are unified with the function and meaning formed by connecting Sung Confucianism with the Pungsu-Sasinsa structure in the layout of the grounds. When examining the D/H ratio of the building and yard, it can be seen that the spaces of Ganghak, Yusang and Jehyang were built appropriately, according to the natural characteristics of each space, such as a sense of openness, enclosure, tension, relief, enhancement, and hierarchical order. The spaces also reflect human scale concepts that take advantage of auditory features. The transition process after the construction of 'Namgea Suhwon' reveals the intentions of the builder to create an ecological landscape composition based on Placement and Harmony. Placement embodies' a purposeful space in which nature and the building are connected naturally, 'incomplete open space pursuing completion', and 'potential beauty in which tension and relaxation are repeated'. Harmony embodies 'order and continuity having a sense of unity with the natural environment' and the 'sharing of daily life and memory'. 'Namgea Suhwon' contains many ideas for landscape planning, land use and the design of a campus environment.

Development of a Remote Multi-Task Debugger for Qplus-T RTOS (Qplus-T RTOS를 위한 원격 멀티 태스크 디버거의 개발)

  • 이광용;김흥남
    • Journal of KIISE:Computing Practices and Letters
    • /
    • v.9 no.4
    • /
    • pp.393-409
    • /
    • 2003
  • In this paper, we present a multi-task debugging environment for Qplus-T embedded-system such as internet information appliances. We will propose the structure and functions of a remote multi-task debugging environment supporting environment effective ross-development. And, we are going enhance the communication architecture between the host and target system to provide more efficient cross-development environment. The remote development toolset called Q+Esto consists to several independent support tools: an interactive shell, a remote debugger, a resource monitor, a target manager and a debug agent. Excepting a debug agent, all these support tools reside on the host systems. Using the remote multi-task debugger on the host, the developer can spawn and debug tasks on the target run-time system. It can also be attached to already-running tasks spawned from the application or from interactive shell. Application code can be viewed as C/C++ source, or as assembly-level code. It incorporates a variety of display windows for source, registers, local/global variables, stack frame, memory, event traces and so on. The target manager implements common functions that are shared by Q+Esto tools, e.g., the host-target communication, object file loading, and management of target-resident host tool´s memory pool and target system´s symbol-table, and so on. These functions are called OPEn C APIs and they greatly improve the extensibility of the Q+Esto Toolset. The Q+Esto target manager is responsible for communicating between host and target system. Also, there exist a counterpart on the target system communicating with the host target manager, which is called debug agent. Debug agent is a daemon task on real-time operating systems in the target system. It gets debugging requests from the host tools including debugger via target manager, interprets the requests, executes them and sends the results to the host.

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.

A Study of the Force Majeure as Immunity by 3rd Party Liability of the Aircraft-Operator -With respect to the German Aviation Act- (항공기운항자의 제3자 책임에 관한 면책사유로서의 불가항력 조항에 관한 고찰 - 독일 항공법상의 해석을 중심으로 -)

  • Kim, Sung-Mi
    • The Korean Journal of Air & Space Law and Policy
    • /
    • v.31 no.1
    • /
    • pp.37-62
    • /
    • 2016
  • Two controversial issues exist in interpretation of "Force Majeure" set forth in the Article 931 (4) of the Korean Commercial Code. Firstly, its scope of application is ambiguous. Secondly, there is a concern that the "immunity" under paragraph 1 and "Force Majeure" may overlap each other. "Force Majeure" refers an event resulted from either natural disaster or 3rd-party. Meanwhile, the latter implies relatively extensive and comprehensive meaning and its interpretation may vary depends on law enforcement. In general, the aircraft accident hardly results in damage or loss to the 3rd-party. Additionally, it is worth to review newly enacted clause and to define its applicability. When the 3rd party is suffered from damage or loss incurred by any external act, it is necessary to explicit the concept of the non-contractual liabilities with respect to 3rd party. From the perspective of protecting aviation industries, the commercial aviation operator may be entitled to immunity in respect of claim for damage incurred by the event of Force Majeure. However, this approach is directly opposite to the victim's benefit and protection by the law. Therefore, the priority of the legal protection should be considered. Although the interest of the commercial aviation operator is not negligible, the protection of the law should be favorable to the 3rd party. Otherwise, the innocent party has no right to claim for damage incurred by aviation accident. Another issue is about the possibility of overlapping of the provision set forth in the paragraph 1 and 4. The former states that the liabilities shall be exempted on account of either the unsettled political or economic situation but this clause is inconsistent with the interpretation on Force Majeure under the latter. As argued above, this may include any event resulted from either political or economic account by the external influence of the 3rd party, thus these two provisions are overlapped. Consequently, in order to develop ordinances and guidelines and to ensure an equal protection to both parties, above two issues must remain open for further discussions.

The Standard of Judgement on Plagiarism in Research Ethics and the Guideline of Global Journals for KODISA (KODISA 연구윤리의 표절 판단기준과 글로벌 학술지 가이드라인)

  • Hwang, Hee-Joong;Kim, Dong-Ho;Youn, Myoung-Kil;Lee, Jung-Wan;Lee, Jong-Ho
    • Journal of Distribution Science
    • /
    • v.12 no.6
    • /
    • pp.15-20
    • /
    • 2014
  • Purpose - In general, researchers try to abide by the code of research ethics, but many of them are not fully aware of plagiarism, unintentionally committing the research misconduct when they write a research paper. This research aims to introduce researchers a clear and easy guideline at a conference, which helps researchers avoid accidental plagiarism by addressing the issue. This research is expected to contribute building a climate and encouraging creative research among scholars. Research design, data, methodology & Results - Plagiarism is considered a sort of research misconduct along with fabrication and falsification. It is defined as an improper usage of another author's ideas, language, process, or results without giving appropriate credit. Plagiarism has nothing to do with examining the truth or accessing value of research data, process, or results. Plagiarism is determined based on whether a research corresponds to widely-used research ethics, containing proper citations. Within academia, plagiarism goes beyond the legal boundary, encompassing any kind of intentional wrongful appropriation of a research, which was created by another researchers. In summary, the definition of plagiarism is to steal other people's creative idea, research model, hypotheses, methods, definition, variables, images, tables and graphs, and use them without reasonable attribution to their true sources. There are various types of plagiarism. Some people assort plagiarism into idea plagiarism, text plagiarism, mosaic plagiarism, and idea distortion. Others view that plagiarism includes uncredited usage of another person's work without appropriate citations, self-plagiarism (using a part of a researcher's own previous research without proper citations), duplicate publication (publishing a researcher's own previous work with a different title), unethical citation (using quoted parts of another person's research without proper citations as if the parts are being cited by the current author). When an author wants to cite a part that was previously drawn from another source the author is supposed to reveal that the part is re-cited. If it is hard to state all the sources the author is allowed to mention the original source only. Today, various disciplines are developing their own measures to address these plagiarism issues, especially duplicate publications, by requiring researchers to clearly reveal true sources when they refer to any other research. Conclusions - Research misconducts including plagiarism have broad and unclear boundaries which allow ambiguous definitions and diverse interpretations. It seems difficult for researchers to have clear understandings of ways to avoid plagiarism and how to cite other's works properly. However, if guidelines are developed to detect and avoid plagiarism considering characteristics of each discipline (For example, social science and natural sciences might be able to have different standards on plagiarism.) and shared among researchers they will likely have a consensus and understanding regarding the issue. Particularly, since duplicate publications has frequently appeared more than plagiarism, academic institutions will need to provide pre-warning and screening in evaluation processes in order to reduce mistakes of researchers and to prevent duplicate publications. What is critical for researchers is to clearly reveal the true sources based on the common citation rules and to only borrow necessary amounts of others' research.

Experimental Study on Structural Behavior of Precast PSC Curved Girder Bridge (프리캐스트 PSC 곡선 거더교의 구조거동에 대한 실험적 연구)

  • Kim, Sung Jae;Kim, Sung Bae;Uhm, Ki Ha;Kim, Jang Ho Jay
    • KSCE Journal of Civil and Environmental Engineering Research
    • /
    • v.34 no.6
    • /
    • pp.1731-1741
    • /
    • 2014
  • Recently, many overpasses, highway, and advanced transit systems have been constructed to distribute the traffic congestion, thus small size of curved bridges with small curvature such as ramp structures have been increasing. Many of early curved bridges had been constructed by using straight beams with curved slabs, but curved steel beams have replaced them due to the cost, aesthetic and the advantage in building the section form and manipulating the curvature of beams, thereby large portion of curved bridges were applied with steel box girders. However, steel box girder bridges needs comparatively high initial costs and continuous maintenance such as repainting, which is the one of the reason for increasing the cost. Moreover, I-type steel plate girder which is being studied by many researchers recently, seem to have problems in stability due to the low torsional stiffness, resulting from the section characteristics with thin plate used for web and open section forms. Therefore, in recent studies, researchers have proposed curved precast PSC girders with low cost and could secured safety which could replace the curved steel girder type bridges. Hence, this study developed a Smart Mold system to manufacture efficient curved precast PSC girders. And by using this mold system a 40 m 2-girder bridge was constructed for a static flexural test, to evaluate the safety and performance under ultimate load. At the manufacturing stage, each single girder showed problems in the stability due to the torsional moment, but after the girders were connected by cross beams and decks, the bridge successfully distributed the stress, thereby the stability was confirmed. The static loading test results show that the initial crack was observed at 1,400 kN when the design load was 450 kN, and the load at the allowable deflection by code was 1,800 kN, which shows that the safety and usability of the curved precast PSC bridge manufactured by Smart Mold system is secured.

Use of ChatGPT in college mathematics education (대학수학교육에서의 챗GPT 활용과 사례)

  • Sang-Gu Lee;Doyoung Park;Jae Yoon Lee;Dong Sun Lim;Jae Hwa Lee
    • The Mathematical Education
    • /
    • v.63 no.2
    • /
    • pp.123-138
    • /
    • 2024
  • This study described the utilization of ChatGPT in teaching and students' learning processes for the course "Introductory Mathematics for Artificial Intelligence (Math4AI)" at 'S' University. We developed a customized ChatGPT and presented a learning model in which students supplement their knowledge of the topic at hand by utilizing this model. More specifically, first, students learn the concepts and questions of the course textbook by themselves. Then, for any question they are unsure of, students may submit any questions (keywords or open problem numbers from the textbook) to our own ChatGPT at https://math4ai.solgitmath.com/ to get help. Notably, we optimized ChatGPT and minimized inaccurate information by fully utilizing various types of data related to the subject, such as textbooks, labs, discussion records, and codes at http://matrix.skku.ac.kr/Math4AI-ChatGPT/. In this model, when students have questions while studying the textbook by themselves, they can ask mathematical concepts, keywords, theorems, examples, and problems in natural language through the ChatGPT interface. Our customized ChatGPT then provides the relevant terms, concepts, and sample answers based on previous students' discussions and/or samples of Python or R code that have been used in the discussion. Furthermore, by providing students with real-time, optimized advice based on their level, we can provide personalized education not only for the Math4AI course, but also for any other courses in college math education. The present study, which incorporates our ChatGPT model into the teaching and learning process in the course, shows promising applicability of AI technology to other college math courses (for instance, calculus, linear algebra, discrete mathematics, engineering mathematics, and basic statistics) and in K-12 math education as well as the Lifespan Learning and Continuing Education.