• 제목/요약/키워드: convolution model

검색결과 394건 처리시간 0.022초

컨벌루션 기법을 이용한 제주도 표선유역 부정류 지하수 흐름 모델 개발 (Development of a Transient Groundwater Flow Model in Pyoseon Watershed of Jeju Island: Use of a Convolution Method)

  • 김승구;구민호;정일문
    • 한국환경과학회지
    • /
    • 제24권4호
    • /
    • pp.481-494
    • /
    • 2015
  • Groundwater level hydrographs from observation wells in Jeju island clearly illustrate distinctive features of recharge showing the time-delaying and dispersive process, mainly affected by the thickness and hydrogeologic properties of the unsaturated zone. Most groundwater flow models have limitations on delineating temporal variation of recharge, although it is a major component of the groundwater flow system. Recently, a convolution model was suggested as a mathematical technique to generate time series of recharge that incorporated the time-delaying and dispersive process. A groundwater flow model was developed to simulate transient groundwater level fluctuations in Pyoseon area of Jeju island. The model used the convolution technique to simulate temporal variations of groundwater levels. By making a series of trial-and-error adjustments, transient model calibration was conducted for various input parameters of both the groundwater flow model and the convolution model. The calibrated model could simulate water level fluctuations closely coinciding with measurements from 8 observation wells in the model area. Consequently, it is expected that, in transient groundwater flow models, the convolution technique can be effectively used to generate a time series of recharge.

병렬형 합성곱 신경망을 이용한 골절합용 판의 탐지 성능 비교에 관한 연구 (A Study on Detection Performance Comparison of Bone Plates Using Parallel Convolution Neural Networks)

  • 이송연;허용정
    • 반도체디스플레이기술학회지
    • /
    • 제21권3호
    • /
    • pp.63-68
    • /
    • 2022
  • In this study, we produced defect detection models using parallel convolution neural networks. If convolution neural networks are constructed parallel type, the model's detection accuracy will increase and detection time will decrease. We produced parallel-type defect detection models using 4 types of convolutional algorithms. The performance of models was evaluated using evaluation indicators. The model's performance is detection accuracy and detection time. We compared the performance of each parallel model. The detection accuracy of the model using AlexNet is 97 % and the detection time is 0.3 seconds. We confirmed that when AlexNet algorithm is constructed parallel type, the model has the highest performance.

Traffic Flow Prediction Model Based on Spatio-Temporal Dilated Graph Convolution

  • Sun, Xiufang;Li, Jianbo;Lv, Zhiqiang;Dong, Chuanhao
    • KSII Transactions on Internet and Information Systems (TIIS)
    • /
    • 제14권9호
    • /
    • pp.3598-3614
    • /
    • 2020
  • With the increase of motor vehicles and tourism demand, some traffic problems gradually appear, such as traffic congestion, safety accidents and insufficient allocation of traffic resources. Facing these challenges, a model of Spatio-Temporal Dilated Convolutional Network (STDGCN) is proposed for assistance of extracting highly nonlinear and complex characteristics to accurately predict the future traffic flow. In particular, we model the traffic as undirected graphs, on which graph convolutions are built to extract spatial feature informations. Furthermore, a dilated convolution is deployed into graph convolution for capturing multi-scale contextual messages. The proposed STDGCN integrates the dilated convolution into the graph convolution, which realizes the extraction of the spatial and temporal characteristics of traffic flow data, as well as features of road occupancy. To observe the performance of the proposed model, we compare with it with four rivals. We also employ four indicators for evaluation. The experimental results show STDGCN's effectiveness. The prediction accuracy is improved by 17% in comparison with the traditional prediction methods on various real-world traffic datasets.

Pix2Pix 모델을 활용한 단일 영상의 깊이맵 추출 (Depth Map Extraction from the Single Image Using Pix2Pix Model)

  • 강수명;이준재
    • 한국멀티미디어학회논문지
    • /
    • 제22권5호
    • /
    • pp.547-557
    • /
    • 2019
  • To extract the depth map from a single image, a number of CNN-based deep learning methods have been performed in recent research. In this study, the GAN structure of Pix2Pix is maintained. this model allows to converge well, because it has the structure of the generator and the discriminator. But the convolution in this model takes a long time to compute. So we change the convolution form in the generator to a depthwise convolution to improve the speed while preserving the result. Thus, the seven down-sizing convolutional hidden layers in the generator U-Net are changed to depthwise convolution. This type of convolution decreases the number of parameters, and also speeds up computation time. The proposed model shows similar depth map prediction results as in the case of the existing structure, and the computation time in case of a inference is decreased by 64%.

Decomposed "Spatial and Temporal" Convolution for Human Action Recognition in Videos

  • Sediqi, Khwaja Monib;Lee, Hyo Jong
    • 한국정보처리학회:학술대회논문집
    • /
    • 한국정보처리학회 2019년도 춘계학술발표대회
    • /
    • pp.455-457
    • /
    • 2019
  • In this paper we study the effect of decomposed spatiotemporal convolutions for action recognition in videos. Our motivation emerges from the empirical observation that spatial convolution applied on solo frames of the video provide good performance in action recognition. In this research we empirically show the accuracy of factorized convolution on individual frames of video for action classification. We take 3D ResNet-18 as base line model for our experiment, factorize its 3D convolution to 2D (Spatial) and 1D (Temporal) convolution. We train the model from scratch using Kinetics video dataset. We then fine-tune the model on UCF-101 dataset and evaluate the performance. Our results show good accuracy similar to that of the state of the art algorithms on Kinetics and UCF-101 datasets.

Deep Learning을 위한 GPGPU 기반 Convolution 가속기 구현 (An Implementation of a Convolutional Accelerator based on a GPGPU for a Deep Learning)

  • 전희경;이광엽;김치용
    • 전기전자학회논문지
    • /
    • 제20권3호
    • /
    • pp.303-306
    • /
    • 2016
  • 본 논문에서는 GPGPU를 활용하여 Convolutional neural network의 가속화 방법을 제안한다. Convolutional neural network는 이미지의 특징 값을 학습하여 분류하는 neural network의 일종으로 대량의 데이터를 학습해야하는 영상 처리에 적합하다. 기존의 Convolutional neural network의 convolution layer는 다수의 곱셈 연산을 필요로 하여 임베디드 환경에서 실시간으로 동작하기에 어려움이 있다. 본 논문에서는 이러한 단점을 해결하기 위하여 winograd convolution 연산을 통하여 곱셈 연산을 줄이고 GPGPU의 SIMT 구조를 활용하여 convolution 연산을 병렬 처리한다. 실험은 ModelSim, TestDrive를 사용하여 진행하였고 실험 결과 기존의 convolution 연산보다 처리 시간이 약 17% 개선되었다.

밀링가공에서 절삭력 모델을 이용한 커터 오프셋 판별에 관한 연구 (A Study on the Identification of Cutter Offset by Cutting Force Model in Milling Process)

  • 김영석
    • 한국생산제조학회지
    • /
    • 제7권2호
    • /
    • pp.91-99
    • /
    • 1998
  • This paper presents a methodology for identifying the cutter runout geometry in end milling process. Cutter runout is common but undesirable phenomenon in multi-tooth machining because it introduces variable chip loading to insert which results in a accelerated tool wear. amplification of force variation and hence enlargement vibration amplitude From understanding of chip load change kinematics, the analytical cutting force convolution model was formulated as the angular domain convolution model was formulated as the angular domain convolution of three dynamic cutting force component functions. By virtue of the convolution integration property, the frequency domain expression of the local cutting forces and the chip width density of the cutter. Experimental study is presented to validate the analytical model. This study provides the in-process monitoring and compensation of dynamic cutter runout to improve machining tolerance and surface quality for industrial application.

  • PDF

그래프 합성곱 신경망을 이용한 다중 관측소 기반 지진 이벤트 분류 (Multi-site based earthquake event classification using graph convolution networks)

  • 김관태;구본화;고한석
    • 한국음향학회지
    • /
    • 제39권6호
    • /
    • pp.615-621
    • /
    • 2020
  • 본 논문은 다중 관측소에서 측정된 지진 신호를 이용한 그래프 합성곱 신경망 기반 지진 이벤트 분류 방법을 제안한다. 기존의 딥러닝 기반 지진 이벤트 분류 방법은 대부분 단일 관측소에서 측정된 신호로부터 지진 이벤트를 분류한다. 지진 관측망에는 수많은 지진 관측소가 존재하며 하나의 관측소만 사용하는 방법보다 여러 관측소의 정보를 동시에 활용하는 방법이 지진 이벤트 분류 성능 향상을 이끌 수 있다. 본 논문에서는 단일 관측소에서 측정된 지진 신호들에 합성곱 신경망을 적용해 임베딩 특징을 추출한 후 그래프 합성곱 신경망을 이용해 단일 관측소들 사이의 정보를 융합하는 다중 관측소 기반 지진 이벤트 분류 구조를 제안한다. 관측소의 개수 변화 등 다양한 실험을 통해 제안한 모델의 성능 검증을 수행하였으며 실험 결과 제안하는 모델이 단일 관측소 기반 분류 모델보다 약 10 % 이상의 정확도와 이벤트 재현율 성능 향상을 보여주었다.

파라메터 변화에 강인한 Multi-Hump Convolution 입력성형기 설계 (Robust Multi-Hump Convolution Input Shaper for Variation of Parameter)

  • 박운환;이재원
    • 한국정밀공학회지
    • /
    • 제18권5호
    • /
    • pp.112-119
    • /
    • 2001
  • A variety of input shaper has been proposed to reduce the residual vibration of flexible structures. Multi-hump input shaper is known to be robust for parameter variations. However, existing approach should solve the more complicated nonlinear simultaneous equations to improve the robustness of the input shaper with the additional constraints. In this paper, by proposing a graphical approach which uses convolution of shaper, the multi-hump convolution input shaper could be designed even if the constraints are added for further robustness. With a mass-damper-spring model, the better performance is obtained using the proposed new multi-hump convolution input shaper.

  • PDF

표층해류 신속예측을 위한 회선적분법의 적용 (Application of a Convolution Method for the Fast Prediction of Wind-Induced Surface Current in the Yellow Sea and the East China Sea)

  • 강관수;정경태
    • 한국해안해양공학회지
    • /
    • 제7권3호
    • /
    • pp.265-276
    • /
    • 1995
  • 본 논문에서는 실시간 해황예보 시스템 개발의 일환으로 수행된 회선적분법을 이용한 신속 표층유속 재현에 대하여 다룬다. 바람응력은 공간적으로 균일하고 대 기압은 무시된다. Data Base 구축을 위하여 4방향의 바람(북서, 북동, 남서, 남동)을 고려하여 각 지점의 회선적분의 가중치를 Galerkin-FEM 모형에 의해 계산하였다. 시간에 따른 바람응력이 주어지면 구성된 Data Base를 이용하여 회선적분법에 의해 신속한 예보가 가능하다. 시간적으로 변하는 임의의 바람응력은 6시간 단위로 정의되는 wind pulse의 연속으로 표현되며 총 12개의 pulse(즉, 72시간전)가 convolution product에 사용된다. 회선적분법의 적용 가능성을 확인하기 위하여 황해 이상화한 해역과 황해와 동지나해에 이르는 실제 해역에서의 수치실험이 수행되었다. 고려한 바람응력은 역풍류 생성 확인을 위하여 시간에 따라 sin 함수적으로 변하는 북풍을 고려하였고, 실험 결과 역풍류 생성의 화인과 회선적분법을 이용한 신속 표층해류 예측 가능성을 확인할 수 있었다.

  • PDF