일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Bitcoin
- 블록체인
- 파이썬
- 클라우드
- probability
- 백트레이더
- backtest
- 자동차sw
- AUTOSAR
- 자동매매
- 비트코인
- toefl writing
- 아마존 웹 서비스
- 토플
- can
- 암호화폐
- backtrader
- AWS
- Cloud
- 퀀트
- 토플 라이팅
- 오토사
- 백테스트
- TOEFL
- python
- 개발자
- GeorgiaTech
- 확률
- it
- 프로그래밍
- Today
- Total
목록Study/파이썬 (4)
Leo's Garage
import numpy as np# Example matrixmatrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])# Calculate the rank of the matrixrank = np.linalg.matrix_rank(matrix)print("Rank of the matrix:", rank) # Rank of the matrix is 2In linear algebra, the rank of a matrix A is the dimension of the vector space generated (or spanned) by the columns. This corresponds to the ma..
예시 코드는 아래와 같다. # PACKAGE# First load the worksheet dependencies.# Here is the activation function and its derivative.sigma = lambda z : 1 / (1 + np.exp(-z))d_sigma = lambda z : np.cosh(z/2)**(-2) / 4# This function initialises the network with it's structure, it also resets any training already done.def reset_network (n1 = 6, n2 = 7, random=np.random) : global W1, W2, W3, b1, b2, b3 W1 = r..
Numpy에서 Matrix 형태로 Data를 선언한 뒤에 목적에 맞게 Column이나 Row로 분리할 수 있다. import numpy as npdata = np.array([[1,2,3],[4,5,6],[7,8,9]])print('data is', data)x = data[:,0] # convert data column 0 to rowprint('x is', x)y = data[:,1] # convert data column 1 to rowprint('y is', y)z = data[:,2] # convert data column 2 to rowprint('z is', z)a = data[0,:] # convert data row 0 to rowprint('a is', a)print('the shape..
pathlib 모듈은 파일, 디렉토리 경로를 객체로 취급하여 조작하거나 처리가 가능하다. 편리한 기능인데, 내장된 함수가 다양하여 파일명이나 부모 디렉토리를 알아내거나, 경로의 목록을 얻어내거나, 파일을 작성하거나 삭제할 수 있다. 파일관련된 처리가 가능하다. pathlib는 python 3.4부터 추가된 모듈이며, 표준 라이브러리에 포함되어 있어서 별도 설치가 필요없다. Object 생성 import pathlib import os file = pathlib.Path('dev/config.txt') Constructor pathlib.Path() 객체를 생성할 수 있다. 인수로는 경로의 문자열을 지정할 수 있고, 상대경로 혹은 절대경로든 상관없이 가능하다. file.is_file() file.is_di..