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 4.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  1. site_name: DagsHub Docs
  2. site_description: 'DagsHub Documentation - Learn how to use DagsHub and improve you data science workflow'
  3. site_dir: 'build/docs'
  4. site_url: 'https://dagshub.com/docs'
  5. copyright: "© 2023 DagsHub"
  6. nav:
  7. - Home: index.md
  8. - Get Started:
  9. - getting_started/index.md
  10. - Create a Project on DagsHub: getting_started/create_a_dagshub_project.md
  11. - Version Code and Data: getting_started/version_code_and_data.md
  12. - Track Experiments: getting_started/track_experiments.md
  13. - Explore a New Hypothesis: getting_started/explore_a_new_hypothesis.md
  14. - Feature Guide:
  15. - feature_guide/index.md
  16. - DagsHub Storage: feature_guide/dagshub_storage.md
  17. - Direct Data Access: feature_guide/direct_data_access.md
  18. - Experiment Table: feature_guide/discovering_experiments.md
  19. - DagsHub Tracking: feature_guide/git_tracking.md
  20. - DagsHub Annotations: feature_guide/annotations.md
  21. - DagsHub Diffing: feature_guide/dagshub_diffing.md
  22. - DagsHub Discussions: feature_guide/dagshub_discussions.md
  23. - DagsHub Reports: feature_guide/reports.md
  24. - DagsHub Pipelines: feature_guide/pipeline.md
  25. - Data Science Pull Requests: feature_guide/data_science_pull_requests.md
  26. - DagsHub Topics: feature_guide/topics.md
  27. - DagsHub Templates: feature_guide/project_templates.md
  28. - DagsHub Automation: feature_guide/automation.md
  29. - Reproduce Results: feature_guide/reproducing_results.md
  30. - Data Merging: feature_guide/data_merging.md
  31. - Integration Guide:
  32. - integration_guide/index.md
  33. - GitHub: integration_guide/github.md
  34. - Google Colab: integration_guide/google_colab.md
  35. - DVC: integration_guide/dvc.md
  36. - MLflow: integration_guide/mlflow_tracking.md
  37. - Jenkins: integration_guide/jenkins.md
  38. - Label Studio: integration_guide/label_studio.md
  39. - External Storage: integration_guide/set_up_remote_storage_for_data_and_models.md
  40. - External Git Server: integration_guide/connect_a_git_server_to_dagshub.md
  41. - Webhooks: integration_guide/webhook.md
  42. - New Relic: integration_guide/new_relic_monitoring.md
  43. - FAQ: faq.md
  44. - Troubleshooting: troubleshooting.md
  45. - Advanced Tutorials:
  46. - Pipeline Tutorial - Advanced:
  47. - tutorial/index.md
  48. - Setup: tutorial/setup.md
  49. - Defining the Pipeline: tutorial/pipeline.md
  50. - Experimenting and Reproducibility: tutorial/experiment_repro.md
  51. - DagsHub Annotations: tutorial/label_studio_tutorial.md
  52. - Workshops:
  53. - workshops/index.md
  54. - Interactive Session: workshops/interactive_session.md
  55. - MLflow Crash Course: workshops/mlflow_crash_course.md
  56. - DVC and DDA: workshops/dvc_and_dda.md
  57. - Label Studio: workshops/label_studio.md
  58. - Generative AI: workshops/generative_ai_comics_strip.md
  59. - Google Drive to DagsHub: workshops/google_drive_to_dagshub_storage.md
  60. - API: api.md
  61. edit_uri: https://dagshub.com/DagsHub-Official/dagshub-docs/_edit/main/docs/
  62. markdown_extensions:
  63. - codehilite:
  64. linenums: true
  65. - toc:
  66. permalink: true
  67. - admonition
  68. - pymdownx.details
  69. - pymdownx.superfences
  70. - pymdownx.tabbed:
  71. alternate_style: true
  72. - footnotes
  73. - attr_list
  74. - pymdownx.mark
  75. - tables
  76. google_analytics: [true, true]
  77. theme:
  78. features:
  79. - navigation.indexes
  80. - navigation.top
  81. name: 'material'
  82. icon:
  83. repo: fontawesome/brands/git-alt
  84. edit: material/file-document-edit-outline
  85. custom_dir: 'theme'
  86. favicon: 'assets/images/favicon.png'
  87. logo: 'assets/images/logo.svg'
  88. palette:
  89. - scheme: default
  90. primary: 'teal'
  91. accent: 'teal'
  92. toggle:
  93. icon: material/toggle-switch
  94. name: Switch to dark mode
  95. - scheme: slate
  96. primary: 'teal'
  97. accent: 'teal'
  98. toggle:
  99. icon: material/toggle-switch-off-outline
  100. name: Switch to light mode
  101. font:
  102. text: 'Inter'
  103. code: 'Roboto Mono'
  104. navigation_depth: 4
  105. plugins:
  106. - search:
  107. separator: '[\s\-\.]+'
  108. lang:
  109. - en
  110. extra_css:
  111. - 'assets/stylesheets/header.css'
  112. - 'assets/stylesheets/footer.css'
  113. - 'assets/stylesheets/extra.css'
  114. - 'assets/stylesheets/swagger-ui.css'
  115. - 'assets/stylesheets/custom-search.css'
  116. - 'assets/stylesheets/dark-mode-toggle.css'
  117. - 'assets/stylesheets/prev-next-buttons.css'
  118. extra_javascript:
  119. - 'assets/javascripts/redirects.js'
  120. - 'assets/javascripts/header.js'
  121. - 'js/jquery-3.6.0.min.js'
  122. extra:
  123. social:
  124. - icon: fontawesome/brands/twitter
  125. link: https://twitter.com/TheRealDagsHub
  126. - icon: fontawesome/brands/youtube
  127. link: https://www.youtube.com/channel/UCeuZrCdpIY69XNWqn9OeSYQ
  128. - icon: fontawesome/brands/linkedin
  129. link: https://www.linkedin.com/company/dagshub
  130. - icon: fontawesome/brands/discord
  131. link: https://discord.com/invite/9gU36Y6
Tip!

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

Comments

Loading...