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