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