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