cs231n
船桥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cs231n assignment1 two layer net作业
from __future__ import print_functionimport numpy as npimport matplotlib.pyplot as pltclass TwoLayerNet(object): """ A two-layer fully-connected neural network. The net has an input dimensio...原创 2018-08-15 19:11:22 · 913 阅读 · 0 评论 -
cs231n assignment1 features作业
# Use the validation set to tune the learning rate and regularization strengthfrom cs231n.classifiers.linear_classifier import LinearSVMlearning_rates = [1e-9, 1e-8, 1e-7]regularization_strength...原创 2018-08-16 15:44:46 · 1025 阅读 · 0 评论
分享