Hyperparameter tuning a Transformer with Optuna PythonGary Hutson08/08/20220 Learn how to use Optuna with the transformers large language model library Continue Reading
PythonGary Hutson05/08/20220 Build a PyTorch regression MLP from scratch Shows how to build a MLP regression network from scratch with PyTorch.
PythonGary Hutson05/01/20230 Stable Diffusion model for generating images of Fjords My family had the experience of going to the Norwegian Fjords in May 2022 and I took some great pictures on…
PythonGary Hutson23/12/20220 Stable Diffusion application with Streamlit This combines my love of Deep Learning and Transformer frameworks, with the ability to generate images from textual prompts. First of…
R BlogsGary Hutson02/11/20220 Building a TidyModels classification model from scratch and deploying with Vetiver The awesome TidyModels team have been working hard to populate the tidymodels package and make it even easier to get your…
PythonGary Hutson13/06/20220 I know dictionaries, but what is a DefaultDict? The supporting repository and code file is: https://github.com/StatsGary/PyHacks-Tutorials/blob/main/28_defaultdict.py. This is aimed as a short article to explain why you would want…
PythonGary Hutson23/05/20221 Narly NamedTuples in Python NamedTuples are an excellent way to make your Python code more useful and readable. In short a NamedTuple is an alternative to…
PythonGary Hutson19/05/20220 Automating and downloading Google Chrome images with Selenium I love Nottingham Forest and have been trying to find a way to include them in one of my tutorials, as…
PythonGary Hutson17/05/20220 Working with multiple arguments in a Python function using args and kwargs When I first started programming in Python this used to trip me up all the time. Hopefully through my pain I…
PythonGary Hutson03/05/20220 Building a PyTorch binary classification multi-layer perceptron from the ground up This assumes you know how to programme in Python and know a little about n-dimensional arrays and how to work with…