목록분류 전체보기 (88)
소소한 개발 공부

Zhaoyang Zhang, Yitong Jiang, Jun Jiang, Xiaogang Wang, Ping Luo and Jinwei Gu. STAR: A Structure-aware Lightweight Transformer for Real-time Image Enhancement. Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4106-4115. 2021. paper link 이 논문을 이해하기 위해서 사전 지식으로 Transformer를 알고 있어야 합니다. https://soso-study.tistory.com/74 논문 리뷰: Attention Is All You Need (NIPS2017) 아래 영..

아래 영상을 보면서 리뷰를 진행했습니다. 동빈나, https://www.youtube.com/watch?v=AA621UofTUA 논문 리뷰: Attention Is All You Need (NIPS2017) Attention Is All You Need, Ashish Vaswani et al, NIPS 2017. paper link 분석한 내용에 대해 발표한 자료입니다. 0. Abstract 시퀀스 변환 모델은 인코더, 디코더를 포함한 Convolution 네트워크가 많음 가장 좋은 성능의 모델이 attention 메커니즘으로 인코더, 디코더 연결 이 논문은 RNN과 CNN을 뺀 attention 메커니즘 기반 구조, Transformer 제시 Transformer는 병렬성 정도가 높고 학습 시간이 짧음..

https://answers.unity.com/questions/1676414/how-to-edit-text-mesh-pro-face-dilate-through-scri.html How to edit Text Mesh Pro face dilate through script - Unity Answers answers.unity.com using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; public class testdilate : MonoBehaviour { public TextMeshProUGUI bi; public void OnClick() { StartCoroutine(StartSFX())..
빌드한 파일 안에 있는 파일을 읽으려고 하는데 모바일과 윈도우 에디터 환경이 달라 빌드 환경에서 파일을 찾지 못하는 일이 있었다. 아래의 사이트에서 해결 방안을 얻어서 기록을 남긴다. https://answers.unity.com/questions/974942/accessing-binary-file-on-android-via-www.html Accessing binary file on Android via WWW - Unity Answers answers.unity.com public void Process() { StartCoroutine(LoadFileOnAndroid(fileName)); } IEnumerator LoadFileOnAndroid(string fileName) { string path..

1. static 클래스를 붙여 사용하기 public static class TimeStringFormatter { public static string Sec2Time(int secValue) { string time = string.Empty; if (secValue / 3600 > 0) { time = string.Concat(time, (secValue/3600).ToString(), " 시간 "); secValue = secValue % 3600; } if (secValue / 60 > 0) { time = string.Concat(time, (secValue/60).ToString(), " 분 "); secValue = secValue % 60; } if (secValue % 60 >= 0) ..

Deep Photo Enhancer: Unpaired Learning for Image Enhancement fromPhotographs with GANs, Yu-Sheng Chen et al, CVPR 2018 paper link 공부한 내용을 정리한 글입니다. 아래 글에 나오는 그림과 표는 해당 논문을 참조했습니다. 부분부분 오역 및 본인의 해석이 있습니다. 논문 리뷰 발표 자료입니다. Contents 0.Abstract 1. 목적 2. Global U-Net 3. Adaptive WGAN 4. 개별 배치 정규화 계층(iBN) 0.Abstract 이 논문은 이미지 향상을 위한 unpaired learning method을 제안한다. 원하는 특징의 사진 셋이 주어지면, 입력 이미지를 그 특징을 가진 향..