You can set up global "git config" settings that apply to all git projects on your system. In this lesson, we review how the ./gitconfig file works. W
转载
2016-08-12 03:03:00
124阅读
2评论
Most projects have automatically generated files or folders from the operating system, applications, package managers etc. Usually, we don't want to i
转载
2016-08-12 03:13:00
74阅读
2评论
Sometimes you find a bug in your project that has been around for a while without being noticed; it can be hard to track down where that bug was intro
转载
2016-08-12 02:52:00
53阅读
2评论
flutter practical, flutter, practical, RN, Dart, React Native, js,
source
kkbsource $HOME/.zshrc$ cat .zshrc$ vim .zshrc# flutter PATH & zshexport PATH="$PATH:/Users/xgqfrms-mbp/Documents/
转载
2019-06-12 20:46:00
100阅读
CONTENTSSelecting HyperparametersMost deep learning algorithms come with many hyp
原创
2021-08-19 16:13:56
241阅读
CONTENTSSuccessfully applying deep learning techniques requires more t
原创
2021-08-19 16:14:17
159阅读
CONTENTSSelecting Hy
原创
2022-01-11 10:03:02
89阅读
CONTENTSDebugg
原创
2022-01-11 10:03:29
66阅读
CONTENTSSuccessfully applying deep learning techniques requires more than just a good knowledge of what algorithms exist and the principles that explain how they work. A good machine learning practit
原创
2022-01-11 10:02:34
125阅读
CONTENTSDebugging StrategiesWhen a machine learning system performs poorly, it is usually difficult to tell whether the poor performance is intrinsic to
原创
2021-08-25 10:15:22
129阅读
本文转载至:http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-087-practical-programming-in-c-january-
转载
2023-05-04 19:31:27
68阅读
题目描述We have a grid with H rows and W columns. The square at the i-th row and the j-th column will be called Square (i,j).The integers from 1 through H×W
原创
2020-03-21 23:49:53
50阅读
There is always a temptation when faced with a problem such as "This application needs to just send a value to another server" to reduce it to something
原创
2021-07-17 16:13:58
345阅读
// parseInt 转化--取整 81.5 取整是 81 在遇到非数值的直接干掉,舍掉。 // parseFloat 直接转对应小数 // isNaN not a Number 判断是否为数值 当为true时,非数值;当为false时,为数值。 var a = parseInt("67a.5") ...
转载
2021-11-02 18:27:00
97阅读
2评论
数学基础
卷积
卷积这一概念从最原始来说属于一种数学的运算方法,两个数列进行卷积,是指将一个数列翻转后,从另一个数列最左侧开始滑动求和
来到计算机科学中,由于卷积核往往采用对称矩阵,所以翻转这一动作实际就可以忽略掉了。通过卷积核中数据的不同排列,实现提取出输入图片中的特定特征。
训练 + 预测
目前理解的是,预测仅需要实现正向传播那一堆层,得到预测概率
训练需要在实现正向传播基础上,得到预测概率后
原创
2023-11-02 23:05:47
74阅读
<!-- 标准h5协议 --><!-- DTD h4.01 --><!DOCTYPE html><html> <head> <!-- utf-8 GB2312 GBK --> <meta charset="utf-8" /> <!-- viewport (电脑屏幕的)视口 --> <meta nam ...
转载
2021-10-22 17:24:00
72阅读
2评论
In this article we're going to focus on using just the module WWW::Mechanize and the modules in its orbit. There are other modules out there for performing tasks like the ones we're going to expl
转载
精选
2011-06-24 16:50:52
487阅读
Paxos Made Practical 当一个组中一台机器提出一个值时,其它成员机器通过PAXOS算法在这个值上达成一致。 Paxos分三个阶段。 第一阶段: 提出者会选出一个提议编号n(n>0,n的低位应当包括提出者的唯一标识。这样两台机器就不会产生同样的编号),然后会向组内其它成员发送信息PR
转载
2017-05-14 18:34:00
107阅读
2评论
// CPT101 Practical Exercise 1.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> int main( ...
自己学习,不喜勿喷~1.使用多态优于instanceof,当遇到从父类向子类转型时,可以使用instanceof,例如:Vector类可以容纳以 java.lang.Object(或其派生类)为类别的任何元素,但是从Vector中取得的元素都是以java.lang.Object类型返回的。因此从Vector中取得的元素都需要向下转型为该对象原本属于的类。2. 一旦不再需要对象的引用,则将它设置为n
转载
2023-07-21 19:35:28
51阅读