IvLabs/ResearchPaperNotes

Create a list of subtopics in DL section for better accessibility

Closed this issue · 1 comments

The number of sub sections in DL is increasing and it would be better if we create a list of subtopics present currently, on top of the readme.
Preferably a second year can do this to get a first hand xp about PRs and commits...

yeah you can use Collapsable markdown for subtopic. Example

Deep Learning

  • Domain Adaptation
  • Object Detection
  • Etc

Code for above is

<details><summary>Deep Learning</summary>
<p>
<ul>
  <li>Domain Adaptation</li>
  <li>Object Detection</li>
  <li>Etc</li>
</ul>
</p>
</details>