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.3 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
  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: "© 2022 DagsHub"
  6. nav:
  7. - Docs Home: index.md
  8. - Get Started:
  9. - Get Started Overview: getting_started/overview.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 Overview: feature_guide.md
  16. - DagsHub Storage: feature_guide/dagshub_storage.md
  17. - DagsHub Annotations: feature_guide/annotations.md
  18. - DagsHub Tracking: feature_guide/git_tracking.md
  19. - Experiment Table: feature_guide/discovering_experiments.md
  20. - DagsHub Diffing: feature_guide/dagshub_diffing.md
  21. - DagsHub Discussions: feature_guide/dagshub_discussions.md
  22. - DagsHub Reports: feature_guide/reports.md
  23. - DagsHub Pipeline: feature_guide/pipeline.md
  24. - Data Science Pull Requests: feature_guide/data_science_pull_requests.md
  25. - DagsHub Topics: feature_guide/topics.md
  26. - DagsHub Templates: feature_guide/project_templates.md
  27. - DagsHub Automation: feature_guide/automation.md
  28. - Reproduce Results: feature_guide/reproducing_results.md
  29. - Data Merging: feature_guide/data_merging.md
  30. - Integration Guide:
  31. - Integration Guide Overview: integration_guide.md
  32. - GitHub: integration_guide/github.md
  33. - Google Colab: integration_guide/google_colab.md
  34. - DVC: integration_guide/dvc.md
  35. - MLflow: integration_guide/mlflow_tracking.md
  36. - Jenkins: integration_guide/jenkins.md
  37. - Label Studio: integration_guide/label_studio.md
  38. - External Storage: integration_guide/set_up_remote_storage_for_data_and_models.md
  39. - External Git Server: integration_guide/connect_a_git_server_to_dagshub.md
  40. - Webhooks: integration_guide/webhook.md
  41. - New Relic: integration_guide/new_relic_monitoring.md
  42. - FAQ: faq.md
  43. - Troubleshooting: troubleshooting.md
  44. - Tutorials:
  45. - Basic Tutorial:
  46. - Overview: experiment_tutorial/overview.md
  47. - 0. Data Exploration: experiment_tutorial/0_data.md
  48. - 1. Setup: experiment_tutorial/1_setup.md
  49. - 2. Data Versioning: experiment_tutorial/2_data_versioning.md
  50. - 3. Experimentation: experiment_tutorial/3_experiments.md
  51. - DagsHub Annotations: tutorial/label_studio_tutorial.md
  52. - Pipeline Tutorial - Advanced:
  53. - Overview: tutorial/overview.md
  54. - Setup: tutorial/setup.md
  55. - Defining the Pipeline: tutorial/pipeline.md
  56. - Experimenting and Reproducibility: tutorial/experiment_repro.md
  57. - Google Drive to DagsHub: tutorial/google_drive_to_dagshub_storage.md
  58. - Workshops:
  59. - Interactive Session: workshops/interactive_session.md
  60. - Production-oriented Work: workshops/production_oriented_work.md
  61. - Data Science Teamwork with Git: workshops/effective_data_science_teamwork_using_git.md
  62. - Feature Updates: feature_updates.md
  63. - API: api.md
  64. markdown_extensions:
  65. - codehilite:
  66. linenums: true
  67. - toc:
  68. permalink: true
  69. - admonition
  70. - pymdownx.details
  71. - pymdownx.superfences
  72. - pymdownx.tabbed
  73. - footnotes
  74. - attr_list
  75. - pymdownx.mark
  76. google_analytics: [true, true]
  77. theme:
  78. name: 'material'
  79. icon:
  80. repo: fontawesome/brands/git-alt
  81. custom_dir: 'theme'
  82. favicon: 'assets/images/favicon.png'
  83. logo: 'assets/images/logo.svg'
  84. palette:
  85. primary: 'teal'
  86. accent: 'teal'
  87. scheme: 'slate'
  88. font:
  89. text: 'Lato'
  90. code: 'Roboto Mono'
  91. navigation_depth: 4
  92. plugins:
  93. - search:
  94. separator: '[\s\-\.]+'
  95. lang:
  96. - en
  97. extra_css:
  98. - 'assets/stylesheets/extra.css'
  99. - 'assets/stylesheets/swagger-ui.css'
  100. extra_javascript:
  101. - 'assets/javascripts/redirects.js'
  102. - 'js/jquery-3.6.0.min.js'
  103. extra:
  104. social:
  105. - icon: fontawesome/brands/twitter
  106. link: https://twitter.com/TheRealDagsHub
  107. - icon: fontawesome/brands/youtube
  108. link: https://www.youtube.com/channel/UCeuZrCdpIY69XNWqn9OeSYQ
  109. - icon: fontawesome/brands/linkedin
  110. link: https://www.linkedin.com/company/dagshub
  111. - icon: fontawesome/brands/discord
  112. 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...