# Define a Toy dataset.
x_train = np.array([[3.3],[4.4],[5.5],[6.71],[6.93],[4.168],[9.779],[6.182],[7.59],[2.167],[7.042],[10.791],[5.313],[7.997],[3.1]], dtype=np.float32)y_train = np.array([[1.7],[2.76],[2.09],[3.19],[1.694],[1.573],[3.366],[2.596],[2.53],[1.221],[2.827],[3.465],[1.65],[2.904],[1.3]], dtype=np.float32)# Confirm the data shape.print(x_train.shape, y_train.shape)
(15, 1) (15, 1)
# Linear regression model
model = nn.Linear(input_size, output_size)
# Loss and optimizer
criterion = nn.MSELoss()
optimizer = torch.optim.SGD(model.parameters(), lr=learning_rate,)
# Train the modelfor epoch inrange(num_epochs):# Convert numpy arrays to torch tensorsinputs = torch.from_numpy(x_train)targets = torch.from_numpy(y_train)# Forward passoutputs = model(inputs)loss = criterion(outputs, targets)# Backward and optimizeoptimizer.zero_grad()loss.backward()optimizer.step()# Set an output counterif(epoch+1)%5==0:print('Epoch [{}/{}], loss: {:.4f}'.format(epoch+1, num_epochs, loss.item()))# Plot the graph
predicted = model(torch.from_numpy(x_train)).detach().numpy()
plt.plot(x_train, y_train,'ro', label='Original data')
plt.plot(x_train, predicted, label='Fitted line')
plt.legend()
plt.show()
错误信息如下:Error Installation did not succeed. The application could not be installed:List of apks 出现中文乱码;
我首先尝试了打包,能正常安装,再次尝试了debug的安装包,也正常安装࿱…
文章目录 场景前置准备修改样式官方属性修改样式CSS修改样式按钮的高度height和border-radiusLogo和文字布局 场景
需要用到谷歌的第三方登录,登录按钮有自己的样式。根据官方文档:概览 | Authentication | Google for Developers,提供两种第…