C++ websites and booksJimmy (xiaoke) Shen·FollowMar 15, 2021--ListenShareWebsitescplusplus.com - The C++ Resources NetworkGeneral information about the C++ programming language, including non-technical documents and descriptions: Learn the…www.cplusplus.comcppreference.comEdit descriptionen.cppreference.comGCC, the GNU Compiler CollectionThe GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, Go, and D, as well as libraries…gcc.gnu.orgBooksC++ Standard Library, The: A Tutorial and ReferenceAmazon.com: C++ Standard Library, The: A Tutorial and Reference (0785342623215): Josuttis, Nicolai: Bookswww.amazon.comReference[1]https://youtu.be/Edcwv38c7d4
Jimmy (xiaoke) ShenPytorch freeze part of the layersIn PyTorch we can freeze the layer by setting the requires_grad to False. The weight freeze is helpful when we want to apply a pretrained…5 min read·Jun 17, 2020--1
Jimmy (xiaoke) ShenTransformer number of parameters estimationFrom the original paper we know that base has about 65M parameters, while the big has 213M parameters.3 min read·Nov 8, 2022--1
Jimmy (xiaoke) ShenLower bound and upper bound of C++upper_bound() is a standard library function in C++ defined in the header . It returns an iterator pointing to the first element in the…3 min read·Feb 4, 2020--1
Jimmy (xiaoke) ShenAre you read for solving the traveling salesman problem?Recently, I encountered a traveling salesman problem (TSP)on leetcode. You can find the problem here.7 min read·Nov 22, 2019--
EmreUnraveling the Magic of Variadic Functions in CImagine having a magic function in C that can take any number of arguments, regardless of their type or count. These special functions are…7 min read·Jul 22--2
Uditha AtukoralaFrustrations of creating a gRPC server in C++Despite the gRPC GitHub repo indicating over 65% of the code is C++, it’s so frustrating to use C++ to create a gRPC server.5 min read·Aug 7--
Yakup CengizVariable Shadowing and Point of Declaration in C++I like reading the CPP standard documentation because it allows me to expand my knowledge of new terms and concepts. Have you heard of…5 min read·Aug 28--
Elysium CelesteTop 5 Recommended Books to Learn C++ ProgrammingIntroduction: Learning C++ can be a rewarding journey for aspiring programmers. With its versatile features and widespread use in various…2 min read·Aug 1--
Ari SaifinLevel Up CodingLearn C++20 Ranges in 5 MinutesC++20 introduced Ranges to the standard library: a powerful new feature that can make your code more readable, maintainable, and efficient…·6 min read·Jul 23--
Lance HarvieDebugging Techniques for Embedded SystemsIn this article, you’ll learn the best practices for debugging embedded systems for flawless performance. Continue reading for more info.8 min read·Aug 4--