두물머리 구경과 연핫도그 후기

오랜만에 두물머리를 방문했다. 2013년도 즈음 방문 했을 땐 아직 덜 만들어진 공간 처럼 느껴졌는데 지금은 꽤 그럴듯한 휴식처가 된 것 같다. 매 번 겨울에 방문해서 연꽃잎이 활짝 핀 순간은 못…

0 Comments

고덕 한별불가마사우나 후기

2020년 새해를 맞이해 찜질방을 찾았다. 근처 찜질방 중에 가격도 저렴하고 청결한 사우나가 있다고 해서 찾아갔다. 다른 후기글에서 봤을 때 사우나 가격이 6000원이었는데 금액이 올랐는지 2020년 1월 1일 기준 8000원 이었으며…

0 Comments

Mac에 Unity 설치하기

다운로드 사이트 https://store.unity.com/kr/download?ref=personal 위 사이트에서 'Unity HUB 다운로드'를 클릭하면 UnityHubSetup 파일을 다운로드 할 수 있다.

0 Comments

React Native 개발 자료 모음

React Native Tutorial 따라하기 – Getting StartedReact Native Tutorial 따라하기 – PropsReact Native Tutorial 따라하기 – stateReact Native Tutorial 따라하기 – StyleReact Native Tutorial 따라하기 – Height and WidthReact Native…

0 Comments

React Native FlatList Example using XML Request

XML 데이터를 웹에서 요청하여 해당 데이터를 FlatList로 표현하는 예제를 수행해보자. 본 글은 다음 링크에 있는 포스트를 참고했다. 프로젝트 생성 react-native 명령을 이용해 프로젝트를 생성하고 필요한 패키지를 설치한다. $ react-native init…

0 Comments

Flair를 이용한 Text Classification

본 글은 다음 글을 참고하여 작성했습니다. https://towardsdatascience.com/text-classification-with-state-of-the-art-nlp-library-flair-b541d7add21f Flair 설치 Flair는 python 3.6 이상에서만 동작한다. $ pip install flair 트레이닝 된 모델 테스트 해보기 Flair에서 제공하는 트레이닝 된 모델은 텍스트에서 긍/부정…

0 Comments

curl 명령 사용법

REST API POST 할 때 JSON 파일 보내기 $ curl -X POST -H "Content-Type: application/json" -d @FILENAME DESTINATION # Example curl -X POST -H "Content-Type: application/json" -d @./test.json http://localhost:5000/api/test 참고…

0 Comments

Google 텍스트 감정 분석

구글 감정 분석 가이드 문서를 보고 따라했다. https://cloud.google.com/natural-language/docs/sentiment-tutorial?hl=ko Install Cloud Natural Language API pip install --upgrade google-cloud-language """Demonstrates how to make a simple call to the Natural Language API.""" import…

0 Comments