This is AWESOME

#1
by abidlabs HF staff - opened

This is going to be really helpful. I have a couple of suggestions.

  1. Since the table values are not changing, in order to speed up loading, you can actually just pass the table of values to the DataFrame constructor as a 2D list. Like this:

gr.Dataframe(value=df.values.tolist(), headers=["Paper", "Code", ...])

  1. It would be really cool if clicking on the paper opened up the paper in a new tab, clicking on the code opened up the GitHub repo, clicking on the Gradio demo opened up the Space, and so on. This should be possible with the new Markdown / HTML type of column.

  2. Speaking of Markdown / HTML, we could probably apply that to the papers column to make the font size of the authors smaller than that of the title. I think it will look a bit cleaner.

  3. Can we autosort to start the list with the ones that have demos?

  4. It would be cool to have an open-source score (like @osanseviero suggested) at the top summarizing how many papers have code, demos, etc.

  5. After showing the open-source score, we could have a call to action, saying something like, "contribute a demo" and then link to the Space

  6. Nice to have (but not critical at all imo): a search bar that would allow filtering papers by words in title. Here's an example of one: https://huggingface.co/spaces/abidlabs/crud

NAACL 2022 org

@abidlabs Great suggestions.
Recently, @akhaliq and I discussed about this list of papers via discord chat and made some major changes to the Space. I think we've addressed 1, 2, 3, and 7 of your suggestions now.

Sign up or log in to comment