Skip to content

Luke Salamone's Blog

  • By Luke Salamone
  • Based in United States of America
  • Roughly two posts per month
  • First post on

Posts per month

Data for this chart is available in the table below
Posts per month
Month starting Posts
Sep 2021 2
Oct 2021 0
Nov 2021 0
Dec 2021 0
Jan 2022 0
Feb 2022 0
Mar 2022 1
Apr 2022 1
May 2022 1
Jun 2022 1
Jul 2022 1
Aug 2022 0
Sep 2022 0
Oct 2022 2
Nov 2022 4
Dec 2022 1
Jan 2023 0
Feb 2023 0
Mar 2023 0
Apr 2023 1
May 2023 0
Jun 2023 0
Jul 2023 1
Aug 2023 2
Sep 2023 0
Oct 2023 0
Nov 2023 0
Dec 2023 0
Jan 2024 0
Feb 2024 1
Mar 2024 1
Apr 2024 0
May 2024 1
Jun 2024 5
Jul 2024 1

Any gaps could be due to errors when fetching the blog’s feed.

Most recent posts

Custom PyTorch Collate Function
If your Dataset class looks something like class MyDataset(Dataset): # ... boilerplate ... def __getitem__(self, idx): item = self.data[idx] return item['anchor'], item['positive'], item['negative'] your collate function should be def collate_fn(data): anchors, pos, neg = zip(*data) …
On , 83 words
Very Large Datasets in PyTorch
In God we trust. All others must bring data. ~ W. Edwards Deming Datasets that fit in memory For simple machine learning problems, your PyTorch dataset class probably looks something like this: class SimpleDataset(Dataset): def …
On , 75 words
How to Create Rust Python Bindings
Rust is super fast. Python is super flexible. Porting slow python code to rust can make your life a lot easier, and it’s not too difficult to set up. I will demonstrate rust bindings for …
On , 84 words