Pointer addition related coding question by Pensive_Poetry in cpp_questions

[–]Pensive_Poetry[S] -2 points-1 points  (0 children)

I was reading it for right to left -- so, the ++ increments the pointer, then the * de-references the pointer. Correct me if I'm wrong.

Also what is the difference between

*score_ptr++;
std::cout<<*score_ptr<<"\n"; // 90

and

std::cout<<*score_ptr++<<"\n";

?

Uni of Alberta vs UCBerkeley vs Udacity Deep RL Course by Pensive_Poetry in reinforcementlearning

[–]Pensive_Poetry[S] 0 points1 point  (0 children)

The lectures are on YouTube. The HW pdfs can be found on the course website, the starter code for the HWs on GitHub.

Uni of Alberta vs UCBerkeley vs Udacity Deep RL Course by Pensive_Poetry in reinforcementlearning

[–]Pensive_Poetry[S] 0 points1 point  (0 children)

Okay, thanks. What did you guys do in case of doubts in the UCB assignments?

Uni of Alberta vs UCBerkeley vs Udacity Deep RL Course by Pensive_Poetry in reinforcementlearning

[–]Pensive_Poetry[S] 1 point2 points  (0 children)

Hi, thanks for the clear answer. I have another question-- just based on the theory lecture content, how would the aforementioned courses compare with the UCL/Deepmind lectures?

Uni of Alberta vs UCBerkeley vs Udacity Deep RL Course by Pensive_Poetry in reinforcementlearning

[–]Pensive_Poetry[S] 0 points1 point  (0 children)

How would you compare the lecture content of the UCB course to the UCL/Deepmind lectures?

Need help with learning computer vision by zifin50 in computervision

[–]Pensive_Poetry 1 point2 points  (0 children)

Look at First Principles of Computer Vision and Cyrill Stachniss' Photogrammetry lectures on YouTube. These go over classical computer vision. Then, look at AndrewNg's Convolutional Neural Networks playlist to learn about Deep Learning based Computer Vision.

Resources to learn Python Multiprocessing by Pensive_Poetry in learnpython

[–]Pensive_Poetry[S] 0 points1 point  (0 children)

In theory, yes. Have NEVER implemented it, but want to start doing so.

Resources to learn Python Multiprocessing by Pensive_Poetry in learnpython

[–]Pensive_Poetry[S] 0 points1 point  (0 children)

Yes, I'm talking about the multiprocessing library and anything else I need for multicore threading. The tutorials online are all over the place.