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 1.6 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
  1. site_name: GaNDLF
  2. repo_url: https://github.com/mlcommons/gandlf
  3. repo_name: mlcommons/gandlf
  4. nav:
  5. - Home: index.md
  6. - Getting Started: getting_started.md
  7. - Installation: setup.md
  8. - Usage: usage.md
  9. - Customize Training and Inference: customize.md
  10. - Extending GaNDLF: extending.md
  11. - FAQ: faq.md
  12. - Acknowledgements: acknowledgements.md
  13. theme:
  14. features:
  15. - toc.integrate
  16. - search.suggest
  17. - search.highlight
  18. - search.share
  19. - content.code.annotate
  20. icon:
  21. admonition:
  22. note: octicons/tag-16
  23. abstract: octicons/checklist-16
  24. info: octicons/info-16
  25. tip: octicons/squirrel-16
  26. success: octicons/check-16
  27. question: octicons/question-16
  28. warning: octicons/alert-16
  29. failure: octicons/x-circle-16
  30. danger: octicons/zap-16
  31. bug: octicons/bug-16
  32. example: octicons/beaker-16
  33. quote: octicons/quote-16
  34. name: material
  35. logo: images/logo.png
  36. favicon: images/favicon.png
  37. palette:
  38. - media: "(prefers-color-scheme: light)"
  39. scheme: default
  40. primary: teal
  41. toggle:
  42. icon: material/toggle-switch-off-outline
  43. name: Switch to dark mode
  44. - media: "(prefers-color-scheme: dark)"
  45. scheme: slate
  46. primary: teal
  47. toggle:
  48. icon: material/toggle-switch
  49. name: Switch to light mode
  50. markdown_extensions:
  51. - pymdownx.highlight:
  52. anchor_linenums: true
  53. line_spans: __span
  54. pygments_lang_class: true
  55. - pymdownx.inlinehilite
  56. - pymdownx.snippets
  57. - pymdownx.superfences
  58. - admonition
  59. - pymdownx.details
  60. - pymdownx.superfences
  61. - toc:
  62. permalink: True
Tip!

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

Comments

Loading...