• Title/Summary/Keyword: 다중처리

Search Result 3,413, Processing Time 0.028 seconds

The Impact of Entrepreneurship Education on Entrepreneurial Intentions and Entrepreneurial Behavior of Continuing Education Enrolled Students in University: Focusing on the Mediating Effect of Self-efficacy (창업교육이 성인학습자의 창업의지와 창업행동에 미치는 영향: 자기효능감 매개효과를 중심으로)

  • Yu, So Young;Yang, Young Seok;Kim, Myung Seuk
    • Asia-Pacific Journal of Business Venturing and Entrepreneurship
    • /
    • v.18 no.1
    • /
    • pp.107-124
    • /
    • 2023
  • As getting in 4th Industrial Revolution Times, Continuing Education Enrolled Students(CEES) trying to find loophole for jepordized current life and need job transfer have surged their interest significantly on starting new business to bring up their post career after retirement through self-improvement. Government and university have actively initiated diverse policies of promoting startup for CEES in kicking off entrepreneurship courses and programs. However, relevant main policy, 'The 2nd University Startup Education Five-Year Plan (draft)' have too chiefly focused on theoretical start-up education rather than practical courses, causing the problem of inappropriate support for implementing real startup and business (Ministry of Education, 2018). This study is brought to empirically investigate the effect of self-efficacy as perspective of the impact of entrepreneurship education on entrepreneurial intention and behavior to come up with problem of poor entrepreneurial environment and entrepreneurship education to CEES. As to empirical research, this paper deliver on-line survey to CEES from September to October 2022, collect 207 effective feedbacks, In order to verify the reliability of the scale, the Cronbach's Alpha Coefficient (Cronbach's α) was calculated, analyzed, and measured. For hypothesis test, this paper utilize the multiple regression analysis statistical analysis method and use the SPSS 22.0 statistical processing program. Empirical results show, first, it was found that self-efficacy had a significant effect on start-up education. Second, start-up education had a significant effect on the intention to start a business of adult learners. Third, start-up education had a significant effect on the start-up behavior of adult learners. Fourth, self-efficacy had a significant effect on the intention of adult learners to start a business. Fifth, self-efficacy had a significant effect on the start-up behavior of adult learners. Sixth, self-efficacy had a mediating effect in the relationship between entrepreneurship education and adult learners' intention to start a business. Seventh, self-efficacy had a complete mediating effect in the relationship between start-up education and adult learners' start-up behavior. This paper is brought three significant implications. First, main consideration developing entrepreneurship education tools for CEES need to falls on defining potential needs of CEES as segmenting as to coming up with diversity of CEES's characteristics such as gender, age, experience, education, and occupation. Second, as to design specific entrepreneurship education program, both practical training program of utilizing CEES's career field experience benchmarking best practice startup and venture cases from domestic and global, and professional startup program of CEES initiating directly startup from ideation to develop business plan with pitching and discussing. Third, entrepreneurship education for CEES should be designed to incubate self-efficacy to enhance entrepreneurial intention of implementing entrepreneurial behavior as a real, eventually leading solid support system of self-improvement for CEES' Retirement life planning.

  • PDF

Real data-based active sonar signal synthesis method (실데이터 기반 능동 소나 신호 합성 방법론)

  • Yunsu Kim;Juho Kim;Jongwon Seok;Jungpyo Hong
    • The Journal of the Acoustical Society of Korea
    • /
    • v.43 no.1
    • /
    • pp.9-18
    • /
    • 2024
  • The importance of active sonar systems is emerging due to the quietness of underwater targets and the increase in ambient noise due to the increase in maritime traffic. However, the low signal-to-noise ratio of the echo signal due to multipath propagation of the signal, various clutter, ambient noise and reverberation makes it difficult to identify underwater targets using active sonar. Attempts have been made to apply data-based methods such as machine learning or deep learning to improve the performance of underwater target recognition systems, but it is difficult to collect enough data for training due to the nature of sonar datasets. Methods based on mathematical modeling have been mainly used to compensate for insufficient active sonar data. However, methodologies based on mathematical modeling have limitations in accurately simulating complex underwater phenomena. Therefore, in this paper, we propose a sonar signal synthesis method based on a deep neural network. In order to apply the neural network model to the field of sonar signal synthesis, the proposed method appropriately corrects the attention-based encoder and decoder to the sonar signal, which is the main module of the Tacotron model mainly used in the field of speech synthesis. It is possible to synthesize a signal more similar to the actual signal by training the proposed model using the dataset collected by arranging a simulated target in an actual marine environment. In order to verify the performance of the proposed method, Perceptual evaluation of audio quality test was conducted and within score difference -2.3 was shown compared to actual signal in a total of four different environments. These results prove that the active sonar signal generated by the proposed method approximates the actual signal.

Transfer Learning using Multiple ConvNet Layers Activation Features with Principal Component Analysis for Image Classification (전이학습 기반 다중 컨볼류션 신경망 레이어의 활성화 특징과 주성분 분석을 이용한 이미지 분류 방법)

  • Byambajav, Batkhuu;Alikhanov, Jumabek;Fang, Yang;Ko, Seunghyun;Jo, Geun Sik
    • Journal of Intelligence and Information Systems
    • /
    • v.24 no.1
    • /
    • pp.205-225
    • /
    • 2018
  • Convolutional Neural Network (ConvNet) is one class of the powerful Deep Neural Network that can analyze and learn hierarchies of visual features. Originally, first neural network (Neocognitron) was introduced in the 80s. At that time, the neural network was not broadly used in both industry and academic field by cause of large-scale dataset shortage and low computational power. However, after a few decades later in 2012, Krizhevsky made a breakthrough on ILSVRC-12 visual recognition competition using Convolutional Neural Network. That breakthrough revived people interest in the neural network. The success of Convolutional Neural Network is achieved with two main factors. First of them is the emergence of advanced hardware (GPUs) for sufficient parallel computation. Second is the availability of large-scale datasets such as ImageNet (ILSVRC) dataset for training. Unfortunately, many new domains are bottlenecked by these factors. For most domains, it is difficult and requires lots of effort to gather large-scale dataset to train a ConvNet. Moreover, even if we have a large-scale dataset, training ConvNet from scratch is required expensive resource and time-consuming. These two obstacles can be solved by using transfer learning. Transfer learning is a method for transferring the knowledge from a source domain to new domain. There are two major Transfer learning cases. First one is ConvNet as fixed feature extractor, and the second one is Fine-tune the ConvNet on a new dataset. In the first case, using pre-trained ConvNet (such as on ImageNet) to compute feed-forward activations of the image into the ConvNet and extract activation features from specific layers. In the second case, replacing and retraining the ConvNet classifier on the new dataset, then fine-tune the weights of the pre-trained network with the backpropagation. In this paper, we focus on using multiple ConvNet layers as a fixed feature extractor only. However, applying features with high dimensional complexity that is directly extracted from multiple ConvNet layers is still a challenging problem. We observe that features extracted from multiple ConvNet layers address the different characteristics of the image which means better representation could be obtained by finding the optimal combination of multiple ConvNet layers. Based on that observation, we propose to employ multiple ConvNet layer representations for transfer learning instead of a single ConvNet layer representation. Overall, our primary pipeline has three steps. Firstly, images from target task are given as input to ConvNet, then that image will be feed-forwarded into pre-trained AlexNet, and the activation features from three fully connected convolutional layers are extracted. Secondly, activation features of three ConvNet layers are concatenated to obtain multiple ConvNet layers representation because it will gain more information about an image. When three fully connected layer features concatenated, the occurring image representation would have 9192 (4096+4096+1000) dimension features. However, features extracted from multiple ConvNet layers are redundant and noisy since they are extracted from the same ConvNet. Thus, a third step, we will use Principal Component Analysis (PCA) to select salient features before the training phase. When salient features are obtained, the classifier can classify image more accurately, and the performance of transfer learning can be improved. To evaluate proposed method, experiments are conducted in three standard datasets (Caltech-256, VOC07, and SUN397) to compare multiple ConvNet layer representations against single ConvNet layer representation by using PCA for feature selection and dimension reduction. Our experiments demonstrated the importance of feature selection for multiple ConvNet layer representation. Moreover, our proposed approach achieved 75.6% accuracy compared to 73.9% accuracy achieved by FC7 layer on the Caltech-256 dataset, 73.1% accuracy compared to 69.2% accuracy achieved by FC8 layer on the VOC07 dataset, 52.2% accuracy compared to 48.7% accuracy achieved by FC7 layer on the SUN397 dataset. We also showed that our proposed approach achieved superior performance, 2.8%, 2.1% and 3.1% accuracy improvement on Caltech-256, VOC07, and SUN397 dataset respectively compare to existing work.