Posts
JiHyun's Blog
Cancel

[PR2] Deep content-based musicc recommendation

Motivation Most recommender systems rely on CF However, CF suffers from the cold start problem: fails when no usage data is available, not effective for recommending new and unpopular songs...

[PR1] Deep Learning in Music Recommendation Systems

link: https://www.frontiersin.org/articles/10.3389/fams.2019.00044/full Abstract DNN are mainly used for MRS domain for two aspects. extracting latent factors of music items for audio signals o...

All about Python (1)

Python is an object-oriented programming language, and in Python everything is an object Variable Variable is for naming an object a, b = 3, 2 print(a, b) a, b = b, a print(a, b) 3, 2 2, 3 id(...

What is Django?

Django is an open source web application framework. It helps building your website faster and easier. While building a website, there’s always a must-develope forms: user certificate website ...

Install Django

virtualenv 환경설정 및 Django설치하기 준비물: python3.6 이상, virtualenv(개발 환경을 깔끔하게 관리하는 데 큰 도움이 된다.) 설치 환경: OS X virtualenv 환경설정 virtualenv는 특정 프로젝트가 저장될 환경을 정해주는 것으로, 다른 프로젝트 들과 독립된 환경이 만들어 지므로 프로젝트 관리가 수월해...

Django Model

Object(객체) is an open source web application framework(무료 오픈소스 웹 애플리케이션 프레임워크). It helps building your website faster and easier. While building a website, there’s always a must-develope forms: ...

Transfer learning with a pretrained ConvNet

pretrained ConvNet을 사용해서 Transfer learning을 해보자 이 튜토리얼에서 너는 pre-trained network로 부터 transfer learning을 사용해서 강아지와 고양이 사진을 분류할 수 있을것이다. pre-trained model이란: 큰 데이터 셋에서 이미 이전에 훈련된 저장된 네트워크이다. 특히나 매우 큰 ...

mnist_image_classification

title: “Machine Learning Project: Perceptron?” categories: [deep learning] tags: [deep learning] date: 2019-12-13 12:50:00 +0900 hide: false import tensorflow as tf import ssl ssl._create_default...

Python의 stack,queue,graph

Algorithm은 time complexity를 사용하여 성능을 비교한다. 이제부터 stack, queue에 대한 구현을 time complexity를 사용하여 성능 비교해 보겠다. Stack in Python stack 을list로 구현 import time a= [i for i in range(50000)] # 얘는 st...

Machine Learning Project: Perceptron?

H1 Heading H2 Heading H3 Heading Here’s a some basic text. And here’s some italics Here’s some bold text. What about a link Here’s a bulleted list: *first item +second item -Third item Here...