- Видео 179
- Просмотров 84 324
Computational Medicine
США
Добавлен 28 дек 2018
The videos are still under construction (about 1/4 is complete). The complete lecture files can be found at drive.google.com/drive/folders/1vbnWpukHdlFXmfD9zpRBl4EYsPRzx1gB .
For any questions, please reach me at yshin1209@gmail.com (Yong-Jun Shin).
For any questions, please reach me at yshin1209@gmail.com (Yong-Jun Shin).
Видео
Large Scale Machine Learning Stochastic Gradient Descent
Просмотров 1395 лет назад
ruclips.net/video/W9iWNJNFzQI/видео.html
LMS Adaptive Filter - Part 5 (Stochastic Gradient Descent)
Просмотров 7455 лет назад
LMS Adaptive Filter - Part 5 (Stochastic Gradient Descent)
LMS Adaptive Filter - Part 1
Просмотров 2,3 тыс.5 лет назад
Adaptive Models for Gene Networks: journals.plos.org/plosone/article?id=10.1371/journal.pone.0031657
Simple Two-Gene Regulatory Network (Vectors)
Просмотров 2345 лет назад
Simple Two-Gene Regulatory Network (Vectors)
Numerical Optimization - Gradient Descent
Просмотров 10 тыс.5 лет назад
Numerical Optimization - Gradient Descent
amazing explanation. I finally got the intuition, thank you!
Im unable to dowload web config file
its doesnt work with my macos
its doesnt work with my macos
dang it... my app is mobile... not web...
this is just on point. thx.
Thank you!
EXACTLY what I was looking for, thank you
did you get it to work? it's not working for me
@@Hockeykurt You are better off using netlify. Azure is super expensive
This is awesome, I know it's for medical purposes but I've used it for an electronic sensor and it's incredible! I loved the way you described it! I wish you could speak more about a1 and b1. because choosing out these values are pretty important and so on...! Anyway, tnx for this great tutorial.
I'm unable to download Web.config file
Thanks
This video clearly explained the effect of the extra term! in just 6 min :)
Good information
was very useful
Amazing! Far better than the explanation in my university lecture. Thanks!
around 6:12, should the blue line goes up to infinity after getting over x=1?
Nevermind I get it now. Thanks so much!
Your explanation is perfect and it's easy for me to grasp what you have to offer. May your every day be happy.
Great video. Thanks!
Very fast and efficient explanation with easy maths! Thank you!
very good explanation, thank you
Great tutorail. After watching so many videos, this is the first time I figured out how it works.
Cs
Thank you. Very clear.
hi, can you implement this using simulink and make a video?
pls link for code
You can find the code here: github.com/yshin1209/Computational-Medicine
@@computationalmedicine3669 thanku
why did you cut the voice frequently? Its distracting. But good explanantion
mind. blown. the last 30s are gold.
can u send me the code
You can find the code here: github.com/yshin1209/Computational-Medicine
Hi, good explanation. How to work with visual studio 2019. When I publish my app the brownser consola shows me multiple errors. Errors: DevTools failed to load SourceMap: Could not load content for chrome-extension://mbopgmdnpcbohhpnfglgohlbhfongabi/dist/browser-polyfill.min.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME vivelo360.azurewebsites.net/:9 GET vivelo360.azurewebsites.net/TemplateData/UnityProgress.javascript net::ERR_ABORTED 404 (Not Found) vivelo360.azurewebsites.net/:20 GET vivelo360.azurewebsites.net/TemplateData/responsive.javascript net::ERR_ABORTED 404 (Not Found) UnityLoader.js:1786 Invoking error handler due to Uncaught ReferenceError: UnityProgress is not defined (index):12 Uncaught ReferenceError: UnityProgress is not defined at (index):12 (index):20 GET vivelo360.azurewebsites.net/TemplateData/responsive.javascript net::ERR_ABORTED 404 (Not Found) contentscript.js:58 DevTools failed to load SourceMap: Could not load content for chrome-extension://mbopgmdnpcbohhpnfglgohlbhfongabi/dist/browser-polyfill.min.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
Very clear explanation. Thank you
You are amazing, this is such a clear explanation!
Very clear explanation. Thank you!
정말 감사합니다. LMS를 이렇게 쉽게 이해할 수 있다니!
이런 명강의를 저혼자 듣는게 너무 아깝습니다! 감사합니다!
진짜 너무 좋은 강의인데 뜨지 못한게 너무 아쉽습니다!
기계공학과 석사과정 학생입니다. LMS에 대해 너무 잘 가르쳐 주셔서 감사합니다!
How to work with visual studio 2019
Here is a "ChebFun" simulation that replicates these results in MatLab using a system of coupled ODEs: N = chebop(0,100); x1 = 10; Px1y1 = 0.2; Py1 = 0.9; Px1z1 = 3; Py1z1 = 1.5; Pz1 = 0.9; Px1x2 = 0.5; Py1x2 = 0.25; Px2 = 0.9; Px2y2 = 0.2; Py2 = 0.9; Px2z2 = 0.5; Py2z2 = 0.25; Pz2 = 0.9; Px2z3 = 0.04; Py2z3 = 0.04; Pz3 = 0.9; N.op = @(t,y1,z1,x2,y2,z2,z3) ... [ diff(y1) - (Px1y1*x1 + (Py1-1)*y1); ... diff(z1) - (Px1z1*x1 - Py1z1*y1 + (Pz1-1)*z1); ... diff(x2) - (Px1x2*x1 + Py1x2*y1 + (Px2-1)*x2); ... diff(y2) - (Px2y2*x2 + (Py2-1)*y2); ... diff(z2) - (Px2z2*x2 - Py2z2*y2 + (Pz2-1)*z2); ... diff(z3) - (Px2z3*x2 + Py2z3*y2 + (Pz3-1)*z3); ... ]; N.lbc = [0;0;0;0;0;0]; [y1,z1,x2,y2,z2,z3] = N\0; figure(2); plot(z1);hold on; plot(z2); plot(z3);hold off; grid on; legend('z1','z2','z3'); xlabel('time'); ylabel('concentration'); ylim([0,140]); title('Chebfun ODE Solution');
Thank you so much sir....can you please provide this code. Email: abr.abdelghafour@gmail.com
Really practical and biologically coupled tutorial!
Thanks for the comment, Jinming! If you have any suggestions, please feel free to share them as well.
사이트에 들어가서 강의를 어떻게 듣나요? 스케줄표나 assignment 등은 있지만 강의 자체를 어떻게 수강할 수 있는지 모르겠습니다
제가 비디오에서 소개 드린 수업은 비디오 강의는 없고 pdf 문서로 강의내용을 제공합니다.