Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

mkdocs.yml 2.7 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  1. # Project information
  2. site_name: TagifAI
  3. site_url: https://madewithml.com/#applied-ml
  4. site_description: Tag suggestions for projects on Made With ML.
  5. site_author: Goku Mohandas
  6. # Repository
  7. repo_url: https://github.com/GokuMohandas/applied-ml
  8. repo_name: GokuMohandas/applied-ml
  9. edit_uri: "" #disables edit button
  10. # Copyright
  11. copyright: Copyright © 2021
  12. # Social media
  13. extra:
  14. social:
  15. - icon: fontawesome/brands/twitter
  16. link: https://twitter.com/GokuMohandas
  17. - icon: fontawesome/brands/linkedin
  18. link: https://linkedin.com/in/goku
  19. - icon: fontawesome/brands/github
  20. link: https://github.com/GokuMohandas
  21. - icon: fontawesome/brands/youtube
  22. link: https://www.youtube.com/madewithml?sub_confirmation=1
  23. - icon: fontawesome/solid/paper-plane
  24. link: mailto:hello@madewithml.com
  25. # Configuration
  26. theme:
  27. name: material
  28. logo: static/images/logo.png
  29. favicon: static/images/favicon.ico
  30. palette:
  31. primary: indigo
  32. accent: indigo
  33. font:
  34. text: Roboto
  35. code: Roboto Mono
  36. features:
  37. - navigation.tabs
  38. - navigation.expand
  39. icon:
  40. repo: fontawesome/brands/github
  41. # Extensions
  42. markdown_extensions:
  43. - meta
  44. - pymdownx.emoji:
  45. emoji_index: !!python/name:materialx.emoji.twemoji
  46. emoji_generator: !!python/name:materialx.emoji.to_svg
  47. - admonition # alerts
  48. - pymdownx.details # collapsible alerts
  49. - pymdownx.superfences # nest code and content inside alerts
  50. - attr_list # add HTML and CSS to Markdown elements
  51. - pymdownx.inlinehilite # inline code highlights
  52. - pymdownx.keys # show keystroke symbols
  53. - pymdownx.snippets # insert content from other files
  54. - pymdownx.tabbed # content tabs
  55. - footnotes
  56. - def_list
  57. - pymdownx.arithmatex: # mathjax
  58. generic: true
  59. - pymdownx.tasklist:
  60. custom_checkbox: true
  61. clickable_checkbox: true
  62. - codehilite
  63. - pymdownx.highlight:
  64. use_pygments: true
  65. - toc:
  66. toc_depth: 4
  67. # Plugins
  68. plugins:
  69. - search
  70. - macros
  71. - mkdocstrings:
  72. default_handler: python
  73. handlers:
  74. python:
  75. rendering:
  76. show_root_heading: false
  77. show_source: true
  78. show_category_heading: true
  79. watch:
  80. - tagifai
  81. # Extra CSS
  82. extra_css:
  83. - static/css/custom.css
  84. # Extra JS
  85. extra_javascript:
  86. - https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
  87. - https://polyfill.io/v3/polyfill.min.js?features=es6
  88. - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
  89. # Page tree
  90. nav:
  91. - Home:
  92. - TagIfAI: index.md
  93. - Getting started: getting_started.md
  94. - Reference:
  95. - Config: tagifai/config.md
  96. - Data: tagifai/data.md
  97. - Models: tagifai/models.md
  98. - Training: tagifai/train.md
  99. - Inference: tagifai/predict.md
  100. - Utilities: tagifai/utils.md
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...