본문 바로가기

전체 글

(170)
Generative AI 플랫폼에 대해 알아보자 1. chatGPT 2. stable diffusion 3. DALL-e2 4. Codex 5. Whisper
[AI] Generative AI의 소개 및 활용분야와 코드 목차 Generative AI 소개 Generative AI의 개념과 역사 Generative AI가 사용되는 분야와 예시 Generative 모델의 기초 확률론적 생성 모델의 기초 확률분포 모델링 최대우도 추정과 베이즈 추정 Variational Autoencoder(VAE) Autoencoder의 개념과 구조 Variational Autoencoder(VAE)의 개념과 구조 VAE를 이용한 이미지, 음성, 텍스트 생성 등의 예시 Generative Adversarial Network(GAN) GAN의 개념과 구조 GAN을 이용한 이미지, 음성, 텍스트 생성 등의 예시 GAN의 문제점과 개선 방안 딥러닝 모델의 활용 Transfer Learning과 Fine-tuning을 이용한 Generative A..
[Data Visualization] Plot area color in python 본 글에서는 Plot 안에 색상을 넣는 방법에 대해 알아본다 사용되는 API 는 다음과 같다. axvspan : 수직으로 색상을 입력 axhspan : 평행으로 색상을 입력 Vertical 로 넣는 법 import matplotlib.pyplot as plt x = [1,2,3,4,5,6,7,8] #fake data y = [1,2,3,4,3,2,9,12] fig, ax = plt.subplots() ax.plot(x, y, 'k') ax.grid() ax.margins(0) # remove default margins (matplotlib verision 2+) ax.axvspan(0, 4, facecolor='green', alpha=0.5) ax.axvspan(4, 9, facecolor='yell..
Causal AI (Causal discovery and inference) open-source library Open-source 로 수행가능한 Causal discovery 와 inference library 들을 아래 정리 하였다. Package Made by Language Site Description Area Python R MATLAB Causal discovery CAusal inference cdml-neurips2020 CausaLens O https://github.com/causalens/cdml-neurips2020 A library for generating synthetic data to evaluate causal discovery techniques O Awesome-Causality-Algorithms every https://github.com/rguo12/awesome-caus..
vscode 유용한 단축키 아래 블로그 참조 https://inpa.tistory.com/entry/VS-Code-%E2%8F%B1%EF%B8%8F-%EC%9C%A0%EC%9A%A9%ED%95%9C-%EB%8B%A8%EC%B6%95%ED%82%A4-%EC%A0%95%EB%A6%AC#%EC%A3%BC%EC%84%9D_%EA%B4%80%EB%A0%A8_ [VSCode] 💽 유용한 단축키 모음 - 개발을 누구보다 빠르게 VSCode 유용한 단축키 모음 개발(코딩) 하는데 있어 적당히 타이핑하면 되지 굳이 단축키(shortcut)를 익혀야 하나 싶겠지만, 단축키를 아냐 모르냐 유무에 따라 개발 생산성 차이가 어마어마 해진다 inpa.tistory.com
[Library review] NetworkX 에 대해 알아보자 NetworkX library 에 대해 리뷰할 예정이다. 1. draw_networkx https://networkx.org/documentation/latest/reference/generated/networkx.drawing.nx_pylab.draw_networkx.html draw_networkx — NetworkX 3.1rc1.dev0 documentation draw_networkx draw_networkx(G, pos=None, arrows=None, with_labels=True, **kwds)[source] Draw the graph G using Matplotlib. Draw the graph with Matplotlib with options for node positions, labe..
[Library review] Causal discovery toolbox https://fentechsolutions.github.io/CausalDiscoveryToolbox/html/tutorial_1.html#load-data Basic Tutorial — Causal Discovery Toolbox 0.6.0 documentation Loading a standard dataset using the cdt package is straightforward using the cdt.data module. In this tutorial, we are going to load the Sachs dataset. See also Sachs, K., Perez, O., Pe’er, D., Lauffenburger, D. A., & Nolan, G. P. (2005). Causal ..
DataBricks - Data, analytics and AI on one lakehouse platform DataBricks?A software company that make several opensource projects such as Delta Lake, MLflow, Koalas including Data engineering, Data science, and Machine Learning.  Lakehouse Platform?- the best elements of data lakes and data warehouses delivering data management and performance typically found in data warehouses with the low-cost flexible object stores offered by data lakes 출처https:/..