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 5.0 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
145
146
  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. - Tutorials:
  46. - Basic Tutorial:
  47. - experiment_tutorial/index.md
  48. - 0. Data Exploration: experiment_tutorial/0_data.md
  49. - 1. Setup: experiment_tutorial/1_setup.md
  50. - 2. Data Versioning: experiment_tutorial/2_data_versioning.md
  51. - 3. Experimentation: experiment_tutorial/3_experiments.md
  52. - DagsHub Annotations: tutorial/label_studio_tutorial.md
  53. - Pipeline Tutorial - Advanced:
  54. - tutorial/index.md
  55. - Setup: tutorial/setup.md
  56. - Defining the Pipeline: tutorial/pipeline.md
  57. - Experimenting and Reproducibility: tutorial/experiment_repro.md
  58. - Workshops:
  59. - workshops/index.md
  60. - Interactive Session: workshops/interactive_session.md
  61. - MLflow Crash Course: workshops/mlflow_crash_course.md
  62. - DVC and DDA: workshops/dvc_and_dda.md
  63. - Label Studio: workshops/label_studio.md
  64. - Generative AI: workshops/generative_ai_comics_strip.md
  65. - Google Drive to DagsHub: workshops/google_drive_to_dagshub_storage.md
  66. - API: api.md
  67. edit_uri: https://dagshub.com/DagsHub-Official/dagshub-docs/_edit/main/docs/
  68. markdown_extensions:
  69. - codehilite:
  70. linenums: true
  71. - toc:
  72. permalink: true
  73. - admonition
  74. - pymdownx.details
  75. - pymdownx.superfences
  76. - pymdownx.tabbed:
  77. alternate_style: true
  78. - footnotes
  79. - attr_list
  80. - pymdownx.mark
  81. - tables
  82. google_analytics: [true, true]
  83. theme:
  84. features:
  85. - navigation.indexes
  86. - navigation.top
  87. name: 'material'
  88. icon:
  89. repo: fontawesome/brands/git-alt
  90. edit: material/file-document-edit-outline
  91. custom_dir: 'theme'
  92. favicon: 'assets/images/favicon.png'
  93. logo: 'assets/images/logo.svg'
  94. palette:
  95. - scheme: default
  96. primary: 'teal'
  97. accent: 'teal'
  98. toggle:
  99. icon: material/toggle-switch
  100. name: Switch to dark mode
  101. - scheme: slate
  102. primary: 'teal'
  103. accent: 'teal'
  104. toggle:
  105. icon: material/toggle-switch-off-outline
  106. name: Switch to light mode
  107. font:
  108. text: 'Inter'
  109. code: 'Roboto Mono'
  110. navigation_depth: 4
  111. plugins:
  112. - search:
  113. separator: '[\s\-\.]+'
  114. lang:
  115. - en
  116. extra_css:
  117. - 'assets/stylesheets/header.css'
  118. - 'assets/stylesheets/footer.css'
  119. - 'assets/stylesheets/extra.css'
  120. - 'assets/stylesheets/swagger-ui.css'
  121. - 'assets/stylesheets/custom-search.css'
  122. - 'assets/stylesheets/dark-mode-toggle.css'
  123. - 'assets/stylesheets/prev-next-buttons.css'
  124. extra_javascript:
  125. - 'assets/javascripts/redirects.js'
  126. - 'assets/javascripts/header.js'
  127. - 'js/jquery-3.6.0.min.js'
  128. extra:
  129. social:
  130. - icon: fontawesome/brands/twitter
  131. link: https://twitter.com/TheRealDagsHub
  132. - icon: fontawesome/brands/youtube
  133. link: https://www.youtube.com/channel/UCeuZrCdpIY69XNWqn9OeSYQ
  134. - icon: fontawesome/brands/linkedin
  135. link: https://www.linkedin.com/company/dagshub
  136. - icon: fontawesome/brands/discord
  137. 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...