Posts
Home
- Get link
- X
- Other Apps
Cùng nghiên cứu và tìm hiểu về Machine Learning Hướng dẫn phát triển python code qua các chủ đề ******************************************* Regression Chủ Đề 01. Linear Regression Chủ Đề 02. Multiple Linear Regression Chủ Đề 03. Polynomial Regression Chủ Đề 04. Logistic Regression Classification Chủ Đề 05. Support Vector Machine - SVM Chủ Đề 06. Kernel SVM Chủ Đề 07. Decision Tree Classification Chủ Đề 08. Random Forest Classification Chủ Đề 09. Neural Network Chủ Đề 10. Deep Learning
CUDA - Texture
- Get link
- X
- Other Apps
// include system #include <stdio.h> // include CUDA #include <cuda_runtime.h> #include <helper_cuda.h> #define BLOCK_DIM 512 // use texture memory //-----------------------------------------------------// texture<unsigned char, 1 , cudaReadModeElementType>rT1;// texture<unsigned char, 1 , cudaReadModeElementType>rT2;// //-----------------------------------------------------// __global__ void Blending_Texture(unsigned char *aRS, int size){ int index = blockIdx.x * blockDim.x + threadIdx.x; if(index < size){ //-----------------------------------------------------------------------// aRS[index] = 0.5 * tex1Dfetch(rT1, index) + 0.5 * tex1Dfetch(rT2, index);// //-----------------------------------------------------------------------// ...
Tập hợp Deep Learning code
- Get link
- X
- Other Apps
Tập hợp Deep Learning code để cùng nghiên cứu nha các bạn, các code chủ yếu là matlab, C++, Python, nếu tìm được những code mới , mình sẽ đưa lên sau, và nếu các bạn có những link code khác, nếu được thì cung cấp để cùng nghiên cứu nhé !!! ----------------------------------------------------------------------------------------------------- Theano http://deeplearning.net/software/theano/ code from: http://deeplearning.net/ Deep Learning Tutorial notes and code https://github.com/lisa-lab/DeepLearningTutorials code from: lisa-lab A Matlab toolbox for Deep Learning https://github.com/rasmusbergpalm/DeepLearnToolbox code from: RasmusBerg Palm deepmat Matlab Code for Restricted/Deep BoltzmannMachines and Autoencoder https://github.com/kyunghyuncho/deepmat code from: KyungHyun Cho http://users.ics.aalto.fi/kcho/ Training a deep autoencoder or a classifieron MNIST digits http://www.cs.toronto.edu/~hinton/MatlabForSciencePaper.html code...