Python for Data Science, AI & Development by IBM
Steps involved in ML pipeline
Scikit Learn steps to predict
from pyodide.http import pyfetch
resp = await pyfetch(url)
if resp.status == 200:
with open(filename, "wb") as f:
f.write(await resp.bytes())
df = pd.read_csv("FuelConsumption.csv")