自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 从0开始理解神经网络(三)

# 拓扑排序 import random from functools import reduce sample_graph = { 'a': [1, 2], 'b': [3, 4] } sample_graph = reduce(lambda a, b: a + b, list(sample_graph.values())) print(sample_graph) def toplogic(graph): ''' graph:{ x:[linear],

2021-05-23 22:22:05 104

原创 从0开始理解神经网络(二)

# from sample linear regression to comolicated neural networks # from manul coding gradients to auto-gradients # previous:let the computer fit functions import numpy as np import matplotlib.pyplot as plt import random from matplotlib.animation import FuncA

2021-05-23 22:19:32 91

原创 从0开始理解神经网络(一)

# encoding=utf8 ''' 1.what's the machine learning? 2.waht's the k-n-n algorithm? 3.what's the loss function and why it is the key for our machine learning? 4.what's the Gradient Descent? ''' # step1:load data & data analysis from sklearn.datasets impor

2021-05-23 22:17:27 137

转载 Django学习(一)

Django学习(一) 2005年发布,采用Python语言编写的开源web框架 早期的时候Django主做新闻和内容管理的 一个重量级的 Python Web框架,Django 配备了常用的大部分组件 基本配置 路由系统 原生HTML模板系统 视图 view Model模型,数据库连接和ORM数据库管理 中间件 Cookie & Seesion 分页 数据库后台管理系统ad...

2020-05-10 18:43:15 169

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除