일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- python visualization
- 월간결산
- Tistory
- 통계학
- 시각화
- 독후감
- Python
- Google Analytics
- MySQL
- SQL
- tensorflow
- Visualization
- Linux
- 한빛미디어서평단
- 한빛미디어
- 서평단
- MATLAB
- 텐서플로
- 파이썬
- Ga
- 딥러닝
- 매틀랩
- 블로그
- Pandas
- matplotlib
- 서평
- Blog
- 티스토리
- 리눅스
- 파이썬 시각화
- Today
- Total
목록분류 전체보기 (596)
pbj0812의 코딩 일기
0. 목표 - 목표 위치에 1분마다 현재 시간을 기록한 파일 저장 1. Airflow 설치 pip install apache-airflow 2. 코드 작성 - 작성 위치 : ~/airflow/dags from airflow import DAG from airflow.operators.bash_operator import BashOperator from airflow.operators.dummy_operator import DummyOperator from airflow.operators.python_operator import PythonOperator from datetime import datetime, timedelta dag = DAG('hello-airflow', description='Hell..
1. 기본 정보 - 제목 : THIS IS MARKETING(마케팅이다.) - 지은이 : 세스 고딘 - 구매링크 : 교보문고 2. 구성 / 내용 - 마케팅 구루인 세스 고딘의 마케팅에 대한 생각, 관련 자료 들을 수록 - 이론적으로 접근하는 내용보다는 생각을 한 문단씩 적어 놓음. - 따라서, 마케팅 기법이나 이론을 배우고 싶은 사람에게는 적합하지 않음. 3. 기억할만한 내용(내 생각) 1) 최고의 마케터는 사냥꾼이 아니라 농부다. 심고, 가꾸고, 갈고, 비료를 주고, 잡초를 뽑아라. 2) 결과물을 내보내라. 충분히 좋으니까. 그다음 더 낫게 만들어라. 3) 마케팅은 더 나은 문화를 만들 수 있는 기회다.
1. 일시 / 장소 1) 일시 : 2020년 3월 31일 11:00 ~ 15:00 2) 장소 : 인터넷(링크) 현재 시청가능 2. 스크린샷 모음 - 내용 : GCP의 각 기능에 대한 간단한 소개 및 실습(초심자 레벨) 3. 학습 공간 - qwiklab을 통한 학습 가능 - 온보딩 참여시 한달 무료(or 퀘스트마다 코인 지출) 4. 참고 1) GCP 온보딩 2) qwiklab
1. PyCharm 설치 - https://www.jetbrains.com/pycharm/(가장 최근 버전으로...) PyCharm: the Python IDE for Professional Developers by JetBrains The Python & Django IDE with intelligent code completion, on-the-fly error checking, quick-fixes, and much more... www.jetbrains.com 2. Project 설정 1) PyCharm 실행 후 'Create New Project' 클릭 2) Project InterPreter 옆의 화살표 '▶' 누르기 3) Virtualenv로 설정 및 'Create' 4) File -> Se..
0. 강의명 - TensorFlow in Practice(Coursera) 1. 강의 내용 - TensorFlow 2.0 의 기초 강좌이며 아래의 4개의 세부 과목(이미지, 이미지 고급, 언어, 타임시리즈)으로 이루어짐 - 각 과목은 다시 4주로 이루어짐(총 16주) * 딥러닝 기초랑 파이썬 아는 사람은 빨리 끝남(회사다니면서 5일 걸림) 1) Introduction to TensorFlow for Artificial Intelligence, Machine Learning, and Deep Learning (1) A New Programming Paradigm (2) Introduction to Computer Vision (3) Enhancing Vision with Convolutional Neura..
0. 목표 - TensorFlow 자격증 취득을 위한 예습 - 수료증 1. Week1 - 예제코드 import numpy as np import matplotlib.pyplot as plt import tensorflow as tf from tensorflow import keras def plot_series(time, series, format="-", start=0, end=None,label=None): plt.plot(time[start:end], series[start:end], format, label=label) plt.xlabel("Time") plt.ylabel("Value") if label: plt.legend(fontsieze=14) plt.grid(True) def trend(t..
0. 목표 - tensorflow 자격증 취득을 위한 준비 - 수료증 1. Week1 - Sentiment in text - BBC text archive Datasets - Source of found common stopwords - Sarcasm in News Headlines Dataset by Reshabh Misra - 예제코드(colab) - 문제 데이터셋(bbc-text.csv) import csv from tensorflow.keras.preprocessing.text import Tokenizer from tensorflow.keras.preprocessing.sequence import pad_sequences stopwords = [ "a", "about", "above", "aft..
0. 목표 - 텐서플로 자격증 취득 - 수료증 1. Week1 - Exploring a Larger Dataset - dataset (cats and dogs) 1) 예제 코드(모델 학습 부분만 추림) (1) colab import os import zipfile local_zip = './cats_and_dogs_filtered.zip' zip_ref = zipfile.ZipFile(local_zip, 'r') zip_ref.extractall('./') zip_ref.close() base_dir = './cats_and_dogs_filtered' train_dir = os.path.join(base_dir, 'train') validation_dir = os.path.join(base_dir, 'v..
0. 목표 - TensorFlow in Practice 완강 이후 TensorFlow 자격증 취득 - 수료증 1. Week1 1) TensorFlow 2.0 설치 pip install tensorflow==2.0.0-alpha0 2) 예제 코드 - y = 2x - 1 tf로 풀기 - 원본 코드 (1) github (2) colab import tensorflow as tf import numpy as np from tensorflow import keras model = tf.keras.Sequential([keras.layers.Dense(units=1, input_shape=[1])]) model.compile(optimizer='sgd', loss='mean_squared_error') xs = n..
0. 목표 - xlsx 파일 내용을 읽은 후 해당 내용의 빈도수를 통한 워드클라우드 생성 - 데이터 형태(네이트 기사 복붙) 1. 코드 작성 1) 라이브러리 install & import - NLP4kec는 제대로 설치되지 않아 여기서 다운받고 위치 지정 # install #install.packages("tidyverse") #install.packages("rJava") #install.packages("C:/Users/user/Desktop/NLP4kec_1.3.0.zip", repos = NULL) #install.packages("wordcloud2") #install.packages("RColorBrewer") # import library(tidyverse) # 데이터 전처리(stringr)..