- 博客(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关注的人
RSS订阅