上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 简单线性回归 y = 2*x + 1 import numpy as np import torch import torch.nn as nn class LinearRegressionModel(nn.Module): def __init__(self, input_dim, output_ 阅读全文
posted @ 2024-10-05 13:10 星空28 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 解题思路 二维列表思路 def bag_value(ls, vol): """ :param ls: 水果体积及价值列表,列表长度表示水果种类,ls[i][0]表示体积,ls[i][1]表示价值, :param vol:背包体积 ls = [[3, 1], [4, 5], [5, 6], [7, 9 阅读全文
posted @ 2024-10-05 04:49 星空28 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 问题描述 给定一个三角形 triangle ,找出自顶向下的最小路径和。 每一步只能移动到下一行中相邻的结点上。相邻的结点 在这里指的是 下标 与 上一层结点下标 相同或者等于 上一层结点下标 + 1 的两个结点。也就是说,如果正位于当前行的下标 i ,那么下一步可以移动到下一行的下标 i 或 i 阅读全文
posted @ 2024-10-04 12:06 星空28 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_42808994/article/details/113809484 阅读全文
posted @ 2024-09-10 11:56 星空28 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 方法一: 生成二维码 import qrcode # 生成二维码 img = qrcode.make(data="你好") # 将二维码保存为图片 with open('qrcode_test.png', 'wb') as f: img.save(f) 解码二维码 import cv2 d=cv2. 阅读全文
posted @ 2024-08-24 12:01 星空28 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1. 增 class Role(models.Model): title = models.CharField(verbose_name="角色", max_length=32) od = models.IntegerField(verbose_name="排序", default=0) def _ 阅读全文
posted @ 2024-08-04 13:07 星空28 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1. 读写分离 192.168.1.2 default 主数据库负责写入 192.168.1.3 slave 从数据库负责读取 2. 生成数据库表 python manage.py makemigrations 分别迁移到主从数据库 python manage.py migrate --databa 阅读全文
posted @ 2024-08-04 10:34 星空28 阅读(14) 评论(0) 推荐(0) 编辑
摘要: django默认内置没有数据库连接池 第三方工具django-db-connection-pool ` pip install django-db-connection-pool 数据库配置 DATABASES = { 'default': { 'ENGINE': 'dj_db_conn_pool. 阅读全文
posted @ 2024-08-04 07:46 星空28 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 网页格式发送 for_email.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> h1 { color: brown; } p { margin: 5px 阅读全文
posted @ 2024-07-30 13:54 星空28 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/yuyh131/category_8090701.html 阅读全文
posted @ 2024-07-28 15:38 星空28 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页