Sep-19-2020, 04:05 AM
Hi all
I am getting stuck having searched for about an hour through various forums, Stack oveflow posts and online articles!
I have a simple CSV file which has three columns: baseline-id, comparison-id and score.
![[Image: yX2fCMD]](https://ibb.co/yX2fCMD)
The file contains every possible combination of baseline-id and comparison-id, so I have already done the 'permutations' to get all the possible score.
There are 191 baseline-ids and 196 comparison-ids, so 37.4k permutations.
I'd now like to 'optimise' this to get the maximum score. The only constraint that I have is to make sure that I do not use an ID more than once. Ideally, my results should have the 191 distinct baseline-ids, a distinct comparison-id (cannot use the same id twice) and the score.
I cannot find an accessible tutorial for this but expect this is because I am not quite sure what to search for.
Thanks for any help!!
I am getting stuck having searched for about an hour through various forums, Stack oveflow posts and online articles!
I have a simple CSV file which has three columns: baseline-id, comparison-id and score.
The file contains every possible combination of baseline-id and comparison-id, so I have already done the 'permutations' to get all the possible score.
There are 191 baseline-ids and 196 comparison-ids, so 37.4k permutations.
I'd now like to 'optimise' this to get the maximum score. The only constraint that I have is to make sure that I do not use an ID more than once. Ideally, my results should have the 191 distinct baseline-ids, a distinct comparison-id (cannot use the same id twice) and the score.
I cannot find an accessible tutorial for this but expect this is because I am not quite sure what to search for.
Thanks for any help!!