Earlier quoted context omitted.
Incidentally, the zone system for the Danish public transit system is not a metric space. (The ticket you need from A to B is not necessarily the same as from B to A.) That's a kind of practical graph where you want efficient shortest path algorithms for.
The rail network in the UK is also strange. On some routes it is cheaper to split your journey across multiple tickets. On others it is cheaper to buy a ticket for a longer journey. However, this is illegal and the train companies do attempt prosecutions.
Universal Method to Sort Complex Information Found
21–30 of 68 posts
Re: Universal Method to Sort Complex Information Found
#22I wonder what this can mean for fuzzing, optimization, learning or any kind of task that has to do with tip-toeing into potentially high dimensional spaces?
There are currently a ton of mediocre ways to do this because nothing really works very well in high dimensions, and calculating this can easily be the bottleneck in training and evaluation.
Re: Universal Method to Sort Complex Information Found
#23Earlier quoted context omitted.
Incidentally, the zone system for the Danish public transit system is not a metric space. (The ticket you need from A to B is not necessarily the same as from B to A.) That's a kind of practical graph where you want efficient shortest path algorithms for.
Really?? Is that true only when there are multiple paths between A & B or is there something else involved?
Re: Universal Method to Sort Complex Information Found
#24Earlier quoted context omitted.
Really?? Is that true only when there are multiple paths between A & B or is there something else involved?
Other possibilities: Trains going in different directions don't make the same stops (express vs local), and time-based fares applying to a specific direction based on commuting patterns. In the US, on Amtrak, a ticket is specific to an exact train, like buying a plane ticket. There's no generalized "I want a ticket from DC to NYC."
Re: Universal Method to Sort Complex Information Found
#25Two problems that have to do with k-NN are
1. It's a non-parametric method: the number of parameters grow linearly with the size of the training set since the distance function must be calculated for all training points and the test point.
2. The curse of dimensionality: distance metrics like the Euclidean distance do not perform well in higher dimensions; points which seem "close" in 2D may be far in 3D, 4D, etc. As a result, we would need an exponential amount of more training data for every additional dimension. Locality sensitive hashing tries to combat this by reducing the dimensionality of the data.
Re: Universal Method to Sort Complex Information Found
#26It's interesting that this is called Manhattan distance because it's only relevant in a town where everyone jaywalks... Like Manhattan. It's far from true anywhere where jaywalking is frowned upon.
Because of (the lack of) crosswalk synchronization, it's a lot faster to walk to a place 2 blocks over and 2 blocks up than it is to walk to a place 4 blocks in one direction. Because at the first two lights you have the option of crossing in either direction, at which point you may only have to wait a few moments before crossing in the other direction.
Re: Universal Method to Sort Complex Information Found
#27Earlier quoted context omitted.
The rail network in the UK is also strange. On some routes it is cheaper to split your journey across multiple tickets. On others it is cheaper to buy a ticket for a longer journey. However, this is illegal and the train companies do attempt prosecutions.
Why is it illegal and how do they enforce it? I know that something similar happens with airplane tickets but they get you with the luggage and with terms & conditions AFAIK. How is it similar/different with train tickets?
You are not allowed to break a journey either, so a ticket inspector can spot a ticket for a longer journey at one end of the other. The multiple tickets ruse is more of a grey area.
Re: Universal Method to Sort Complex Information Found
#28Earlier quoted context omitted.
Incidentally, the zone system for the Danish public transit system is not a metric space. (The ticket you need from A to B is not necessarily the same as from B to A.) That's a kind of practical graph where you want efficient shortest path algorithms for.
The rail network in the UK is also strange. On some routes it is cheaper to split your journey across multiple tickets. On others it is cheaper to buy a ticket for a longer journey. However, this is illegal and the train companies do attempt prosecutions.
https://www.telegraph.co.uk/money/consumer-affairs/fare-spli...
https://www.bbc.co.uk/news/uk-england-19217111
and there are web sites which do split ticketing:
http://www.raileasy.co.uk/home/split-ticketing/
Re: Universal Method to Sort Complex Information Found
#29I'm curious to if this result will extend to the k-nearest neighbors (k-NN) algorithms. Two problems that have to do with k-NN are 1. It's a non-parametric method: the number of parameters grow linearly with the size of the training set since the distance function must be calculated for all training points and the test point. 2. The curse of dimensionality: distance metrics like the Euclidean distance do not perform…
Re: Universal Method to Sort Complex Information Found
#30Earlier quoted context omitted.
The article announces the algorithm, which isn't published yet. This first paper contains the proof that the result is possible, not yet the efficient algoithm.
One assumes its an extension of their previous work ( https://arxiv.org/pdf/1501.01062.pdf ), which was only valid for Euclidian and Hamming spaces? Edit: The author says its https://ilyaraz.org/static/papers/daher.pdf , but he got marked dead by HN.