自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 一次阴差阳错的旅程——回首我的软工实践

评测组:汇报在评测组的工作与在评测组工作一个学期的心得体会。工作一学期以来参与了各个阶段的评测打分工作,包括但不限于评测原型设计ui、总体软件验收、演示视频、答辩过程等各项内容,参与作业博客赋分校对,参与结对编程命题并进行主题插画绘制,进行评测表收集统计,进行数据分析,再转化为凸显数据特征的可视图表,同时保存记录进行个人及团队龙虎榜统计。心得体会。

2023-01-09 01:09:18 63

原创 Deep learning practice of ANg(C1week4))

目的:搭建多层神经网络分析:如上次作业,并构建好、、、的基本函数。注意初始化参数时w的初始化与上次的不同。先将功能拆分实现,再进行组合,就可以完成一个。最后可以试试,以及进行。

2022-09-03 12:56:26 341

原创 Deep learning practice of ANg(C1week3)

目的:建立有一个隐藏层的神经网络来对样本进行分类。分析:首先(特征数、样本数),可以直接用shape获知,还可以画出数据散点图,初步判断其特征。然后。接下来就可以进行、、、来优化。得到模型后,就可以用它进行测试集的了。......

2022-08-30 22:27:45 309

原创 Deep learning practice of ANg(C1week2)

Supervised Learning: Train the algorithm according to labelled example. Unsupervised Learning: Train the algorithm according to unlabelled example.

2022-03-11 08:06:54 103

原创 Machine learning practice of ANg(ex8_cofi)

for self-use Code cofiCostFunc function [J, grad] = cofiCostFunc(params, Y, R, num_users, num_movies, ... num_features, lambda) %COFICOSTFUNC Collaborative filtering cost function % [J, grad] = COFICOSTFUNC(params, Y

2022-03-03 21:32:09 101

原创 Machine learning practice of ANg(ex8)

for self-use Code estimateGaussian function [mu sigma2] = estimateGaussian(X) %ESTIMATEGAUSSIAN This function estimates the parameters of a %Gaussian distribution using the data in X % [mu sigma2] = estimateGaussian(X), % The input X is the datas

2022-03-03 20:00:17 62

原创 Machine learning practice of ANg(ex7_pca)

for self-use Code pca function [U, S] = pca(X) %PCA Run principal component analysis on the dataset X % [U, S, X] = pca(X) computes eigenvectors of the covariance matrix of X % Returns the eigenvectors U, the eigenvalues (on diagonal) in S % % Use

2022-03-02 22:59:41 94

原创 Machine learning practice of ANg(ex7)

for self-use Code findClosestCentroids function idx = findClosestCentroids(X, centroids) %FINDCLOSESTCENTROIDS computes the centroid memberships for every example % idx = FINDCLOSESTCENTROIDS (X, centroids) returns the closest centroids % in idx fo

2022-03-02 21:40:18 68

原创 Machine learning practice of ANg(ex6_spam)

for self-use Code processEmail function word_indices = processEmail(email_contents) %PROCESSEMAIL preprocesses a the body of an email and %returns a list of word_indices % word_indices = PROCESSEMAIL(email_contents) preprocesses % the body of an

2022-03-02 13:14:07 632

原创 Machine learning practice of ANg(ex6)

for self-use Code gaussianKernel function sim = gaussianKernel(x1, x2, sigma) %RBFKERNEL returns a radial basis function kernel between x1 and x2 % sim = gaussianKernel(x1, x2) returns a gaussian kernel between x1 and x2 % and returns the value in

2022-03-01 22:51:56 375

原创 Machine learning practice of ANg(ex5)

for self-use Code linearRegCostFunction function [J, grad] = linearRegCostFunction(X, y, theta, lambda) %LINEARREGCOSTFUNCTION Compute cost and gradient for regularized linear %regression with multiple variables % [J, grad] = LINEARREGCOSTFUNCTION(X

2022-02-28 23:03:47 77

原创 Machine learning practice of ANg(ex4)

Code sigmoidGradient g = sigmoid(z).*(1-sigmoid(z)); %注意是对应元素相乘 nnCostFunction function [J grad] = nnCostFunction(nn_params, ... input_layer_size, ... hidden_layer_size, ...

2022-02-28 14:47:09 93

原创 Machine learning practice of ANg(ex3_nn)

for self-use Code predict function p = predict(Theta1, Theta2, X) %PREDICT Predict the label of an input given a trained neural network % p = PREDICT(Theta1, Theta2, X) outputs the predicted label of X given the % trained weights of a neural networ

2022-02-27 10:28:21 302

原创 Machine learning practice of ANg(ex3)

for self-use Homework oneVsAll function [all_theta] = oneVsAll(X, y, num_labels, lambda) %ONEVSALL trains multiple logistic regression classifiers and returns all %the classifiers in a matrix all_theta, where the i-th row of all_theta %corresponds to

2022-02-26 22:35:39 168

原创 Machine learning practice of ANg(ex2_reg)

for self-use Homework costFuctionReg it's the only difference compared with the ex2 function [J, grad] = costFunctionReg(theta, X, y, lambda) %COSTFUNCTIONREG Compute cost and gradient for logistic regression with regularization % J = COSTFUNCTIONRE

2022-02-26 14:17:41 76

原创 Machine learning practice of ANg(ex2)

for self-use Homework plotData %% Machine Learning Online Class - Exercise 2: Logistic Regression % % Instructions % ------------ % % This file contains code that helps you get started on the logistic % regression exercise. You will need to comple

2022-02-26 11:01:34 74

原创 Machine learning practice of ANg(ex1_multi)

record for self-use homework featureNormalization function [X_norm, mu, sigma] = featureNormalize(X) %FEATURENORMALIZE Normalizes the features in X % FEATURENORMALIZE(X) returns a normalized version of X where % the mean value of each feature is 0

2022-02-25 23:49:29 212

原创 Machine learning practice of ANg(ex1)

just record for self-use homework (warmUpExercise omitted) plotData function plotData(x, y) %PLOTDATA Plots the data points x and y into a new figure % PLOTDATA(x,y) plots the data points and gives the figure axes labels of % population and profi

2022-02-25 22:41:25 105

空空如也

空空如也

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

TA关注的人

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