Tag: Function
Total: 36 Posts
Posts of Tag: Function
Total: 36 Posts
Posts of Tag: Function
Understanding TensorFlow's @tf.function Decorator
.lazyload-placeholder { display: none; } Introduction Improving the performance of a training loop can save hours of computing time when training machine learning models. One of the ways of improving the perfor...Learn MorePythonFunctionMachine LearningDeep LearningtensorflowWhat is 'from_logits=True' in Keras/TensorFlow Loss Functions?
.lazyload-placeholder { display: none; } Deep Learning frameworks like Keras lower the barrier to entry for the masses and democratize the development of DL models to unexperienced folk, who can rely on reasona...Learn MorePythonFunctionMachine LearningDeep LearningkerastensorflowFunctional Programming in Java 8: Definitive Guide to Predicates
Introduction The Predicate interface was introduced in Java 8 as a part of the java.util.function package. The release of version 8 marks the point at which Java adopted ample support for functional programming...Learn MoreProgrammingFunctionJavaWorking with JavaScript's Built-In String Functions
Introduction When working with any programming language, you'll probably need some functionality that is not integrated into that language natively. Thus, you'll either implement them yourself, or turn to using...Learn MoreStringFunctionJavaScriptWorking with JavaScript's Built-In Array Functions
Introduction When working with any programming language, you'll probably need some functionality that is not integrated into that language natively. Thus, you'll either implement them yourself, or turn to using...Learn MoreArrayFunctionJavaScriptGuide to Functional Interfaces and Lambda Expressions in Java
Introduction Java is an object-oriented language, imperative in its essence (contrasting with the declarative practice that is functional programming). Nonetheless, it was possible to apply functional principle...Learn MoreFunctionJavalambdaGuide to Numpy's arange() Function
Introduction Numpy is the most popular mathematical computing Python library. It offers a great number of mathematical tools including but not limited to multi-dimensional arrays and matrices, mathematical func...Learn MorePythonFunctionnumpyThe Python zip() Function
The Python zip() Function In this article, we'll examine how to use the built-in Python zip() function. The zip() function is a Python built-in function that allows us to combine corresponding elements from mul...Learn MorePythonFunctionUnderstanding Recursive Functions with Python
Understanding Recursive Functions with Python Introduction When we think about repeating a task, we usually think about the for and while loops. These constructs allow us to perform iteration over a list, colle...Learn MorePythonFunctionOverloading Functions and Operators in Python
Overloading Functions and Operators in Python What is Overloading? Overloading, in the context of programming, refers to the ability of a function or an operator to behave in different ways depending on the par...Learn MorePythonFunctionOverloadingPython Nested Functions
Python Nested Functions What is a Nested Function? Functions are one of the "first-class citizens" of Python, which means that functions are at the same level as other Python objects like integers, strings, mod...Learn MorePythonFunctionFunctional Programming in Python
Functional Programming in Python Introduction Functional Programming is a popular programming paradigm closely linked to computer science's mathematical foundations. While there is no strict definition of what ...Learn MoreProgrammingPythonFunction