波士顿房价
import matplotlib.pyplot as plt
%matplotlib inline import tensorflow as tf
import numpy as np from sklearn.datasets import load_boston
import sklearn.linear_model as sk
boston load_boston()
features np.array(boston.data)
labels np.arra…
一、RESTful API 简介
REST(Representational State Transfer)是一种基于 Web 的架构风格,RESTful API 是使用 HTTP 协议并遵循 REST 原则设计的 API 接口。其核心思想是:使用标准 HTTP 方法(GET、POST、PUT、DELETE&…