Skip to main content
Advice
1 vote
0 replies
0 views

Python library recommendation for the implementation of a neural network modification algorithm

Pytorch is generally the go to library to implement new architectures. It's very good for prototyping which is perfect for research. So you should start with Pytorch imo. Also, writing an algorithm ...
G-Man's user avatar
  • 11
1 vote

Why does my Python solution for selecting 2 points from each interval give incorrect results for overlapping intervals?

You are currently considering intervals in order of their start values, but it is the intervals that end first that decide when values must be chosen. Sort the intervals by the end value instead like ...
Unmitigated's user avatar
  • 91.4k

Only top scored, non community-wiki answers of a minimum length are eligible