Python 썸네일형 리스트형 Bland's Rule(Simplex method) Simplex method에서 Cycle 문제를 해결할 수 있는 Bland's Rule 알고리즘을 python으로 구현해 보았다. import torch import numpy as np class problem: def __init__(self, max_min, A, C, b, basis, ss=None): self.max_min = max_min self.A_matrix = A self.C_matrix = C self.b_vector = b self.basis_index = basis self.dimension = list(self.b_vector.size())[0] if ss != None: self.I_matrix = ss else: self.I_matrix = torch.eye(self.dime.. 더보기 취미로 하는 데이터 분석 시리즈07(Python Selenium으로 다음 인기 검색어 가져오기, 다음 로그인) 다음의 인기검색어를 가져와보자! In [50]: from webdriver_manager.chrome import ChromeDriverManager from selenium import webdriver from bs4 import BeautifulSoup import os from glob import glob import requests import time In [57]: urls = "https://www.daum.net/" #wrapSearch > div.slide_favorsch > ul:nth-child(2) > li:nth-child(2) > a In [72]: driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get(u.. 더보기 이전 1 다음