hindupuravinash / the-gan-zoo

A list of all named GANs!
MIT License
14.28k stars 2.55k forks source link

Add dates? #10

Closed kaceprojects closed 7 years ago

kaceprojects commented 7 years ago

Hey, this is super useful, but in a quick glance if I'm looking for something that came out only in (let's say), the last 2 years, it'd be more informative to add the years of release next to the names as well! But an awesome job with this!

bgavran commented 7 years ago

I agree and to expand: it'd be cool have different sorting methods (sort by date, number of citations). But I'm not sure how realistic the proposal is.

kaceprojects commented 7 years ago

I didn’t mean you sort it differently. But I guess it’s reasonable to do something like -

DC-GAN (20xx) Conditional GAN (20yy)

And so on, and keep them sorted in alphabetical order.

Regards, Katha Chanda

On 16-May-2017, at 10:22 AM, Bruno Gavranović notifications@github.com wrote:

I agree and to expand: it'd be cool have different sorting methods (sort by date, number of citations). But I'm not sure how realistic the proposal is.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/hindupuravinash/the-gan-zoo/issues/10#issuecomment-301853585, or mute the thread https://github.com/notifications/unsubscribe-auth/AZPmea2ffLDLYlszhqJ1aU5vuwGBP9ovks5r6dtHgaJpZM4Nb5j-.

pwaller commented 7 years ago

One other possible useful way sorting would be to simply group them by year. Or alternatively to maintain multiple lists in the repository in different documents.

hindupuravinash commented 7 years ago

@kathachanda Thanks for compliments :) The suggestion to add years sounds good to me too, can add them in the format you propose. Name - Title ( Year ) Example: GAN - Generative Adversarial Networks (2014)

@pwaller @bgavran Sorting the list is something that I wanted to do right from the beginning, but within markdown is not possible unless the readers install some third party plugins. Other than year and citations, I would like to add links to code implementations, status if selected for ICLR etc to the list! But I couldn't come up with a decent format like a sortable table for the list which would make it easy to read.

pwaller commented 7 years ago

Here's an example of how it might look. I just took the dates in the arxiv URL, and sorted by date.

https://github.com/pwaller/the-gan-zoo/tree/put-in-table

hindupuravinash commented 7 years ago

@pwaller This does jumble the alphabetic order of the papers. As you suggested, we can put this date sorted list in a separate .md apart from the original alphabetically sorted list. Would that be better?

lgalke commented 7 years ago

I also gave github's .csv/.tsv support a try. @hindupuravinash : it is searchable!

https://github.com/lgalke/the-gan-zoo/blob/master/gans.tsv

However, the links are not clickable anymore, and I have no idea how you could trick github's tsv support to display links (maybe <a> would work?).

I'd prefer some kind of hierarchy where the top level sorting order are years (maybe even as headers) and the lower levels are either alphabetically or month, alphabetically.

hindupuravinash commented 7 years ago

@lgalke This looks super, didn't know about this before. Will see if I can get link clickable!

hindupuravinash commented 7 years ago

Thanks to @lgalke there's a table now, which is listed in chronological order and is searchable by years/titles (and anything else too, but I found these two to be most helpful).