목록분류 전체보기 (329)
뉴비에욤
https://bob3rdnewbie.tistory.com/351 ["enode://b161c7cc87e095a09bd5b3205404b10540eac606d26fc7386fee4a15bbd41c5d9e80eeab70f3080117a5276a3450008d88c9dae1602cbca2a0ff859ba6aebb72@51.158.182.111:30303", "enode://8daa5d9d594c5ed0b2623053a4c55abe1a04a9c5c9732169b0ab95c07db811bf1cffad6002f5c2f46c511afc9c5e1873a3840435e54f5ff1e2c16094c5673677@136.244.109.203:30303", "enode://6eee355ac7c814d9b18965bd59b9..
예전 자료 좀 본다고 트러플 4.x 버전대를 설치해서 테스트하고 있었는데 스마트 컨트랙트 compile migrate 다 되는데 계속 저런 오류 뜨면서 함수 실행이 안됨 찾아보니 node 버전 문제더라 node가 14 깔려 있었는데 10으로 다운그레이드하면서 해결 됨
2022년 03월 22일 작동 확인 몇년전 이더 공부할 때는 faucet이 쉬웠는데 요새 찾아보니 죽은 사이트들이 많더라... nft 때문에 다시 만져보고 있는데 faucet 가능한 사이트 2개 밖에 못 찾음... 1) https://faucet.egorfine.com/ Ropsten testnet faucet faucet.egorfine.com >> 이더리움 지갑 주소 당 24시간에 0.1이더씩 제한 있음. >> 요새 가스가 비싸서 스마트 컨트랙트 배포하기에는 0.1이더가 다소 부족할 수 있으니 24시간마다 접속해서 받을 수 있도록.. >>>> 아니면 계정 여러개 만들어서 전송해서 써도 되는데 밴 먹지 않을까...? 2) https://ropsten.oregonctf.org/ Ropsten Ethere..
pg 300DataFrame 이용하기리스트/그림 6.4.5 import osimport pandas as pdfrom bokeh.palettes import Spectral11from bokeh.plotting import output_notebook, figure, show output_notebook() base_url = 'https://raw.githubusercontent.com/practical-jupyter/sample-data/master/anime/'anime_stock_returns_csv = os.path.join(base_url, 'anime_stock_returns.csv')df = pd.read_csv(anime_stock_returns_csv, index_col=0, parse..
pg 299사전형 데이터 이용하기리스트/그림 6.4.3 from bokeh.plotting import output_notebook, figure, showfrom bokeh.models import ColumnDataSource output_notebook() p = figure(plot_width=400, plot_height=400)data = { 'x': [1, 2, 3], 'y1': [1, 2, 3], 'y2': [2, 4, 9],}source = ColumnDataSource(data=data) p.line(source=source, x='x', y='y1', line_width=3)show(p)
그림 6.4.2 생성 코드 from bokeh.plotting import output_notebook, figure, show output_notebook()p = figure(plot_width=400, plot_height=400)p.multi_line([[0, 1, 2], [0, 1, 2]], [[1, 2, 3], [2, 4, 9]], color=['firebrick', 'navy'], line_width=3)show(p)
291 페이지를 보면 bokeh는 총 3개의 레벨 별 모듈이 존재한다고 쓰여져 있음고레벨 : bokeh.charts중레벨 : bokeh.plotting저레벨 : bokeh.models 그러나 292 페이지 중간에는 다음과 같이 작성되어 있음.Bokeh 0.12.6 이후, bokeh.charts 모듈은 bkcharts 모듈에 이동된다. 그 예로 Line 클래스를 Bokeh 0.12.6 이후 버전을 사용해서 import 하는 경우에는 『from bkcharts import Line』 으로 한다. bkcharts의 깃허브 링크는 다음과 같음.https://github.com/bokeh/bkcharts 위 링크를 보면 알겠지만 bkcharts 모듈은 더 이상 유지보수가 진행되고 있지 않음 (마지막 커밋이 201..
2017/07/13 - [Machine Learning/PyTorch] - 윈도우 10 PyTorch 환경 구성 - 설치2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 1 - PyTorch란?2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 2 - Autograd : 자동 미분2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 3 - 뉴럴 네트워크(신경망)2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 4 - Classifier 학습2018/05/01 - [Machine Learning/PyTorch] - PyT..
2017/07/13 - [Machine Learning/PyTorch] - 윈도우 10 PyTorch 환경 구성 - 설치2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 1 - PyTorch란?2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 2 - Autograd : 자동 미분2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 3 - 뉴럴 네트워크(신경망)2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 4 - Classifier 학습2018/05/01 - [Machine Learning/PyTorch] - PyT..
2017/07/13 - [Machine Learning/PyTorch] - 윈도우 10 PyTorch 환경 구성 - 설치2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 1 - PyTorch란?2018/04/30 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 2 - Autograd : 자동 미분2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 3 - 뉴럴 네트워크(신경망)2018/05/01 - [Machine Learning/PyTorch] - PyTorch 튜토리얼 4 - Classifier 학습2018/05/01 - [Machine Learning/PyTorch] - PyT..