Skip to content

Revised before you begin page #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/pull_request_template.md

This file was deleted.

80 changes: 0 additions & 80 deletions .github/scripts/ci_check.py

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/ci_check.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@

/site/_source
/.luarc.json

site/.DS_Store
File renamed without changes.
Binary file added site/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions site/.luarc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"Lua.runtime.version": "Lua 5.3",
"Lua.workspace.checkThirdParty": false,
"Lua.workspace.library": [
"/Applications/quarto/share/lua-types"
"C:\\Users\\parri\\AppData\\Local\\Programs\\Quarto\\share\\lua-types"
],
"Lua.runtime.plugin": "/Applications/quarto/share/lua-plugin/plugin.lua",
"Lua.runtime.plugin": "C:\\Users\\parri\\AppData\\Local\\Programs\\Quarto\\share\\lua-plugin\\plugin.lua",
"Lua.completion.showWord": "Disable",
"Lua.completion.keywordSnippet": "Both",
"Lua.diagnostics.disable": [
Expand Down
15 changes: 7 additions & 8 deletions site/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,16 @@ clean:

# Clone the source repository we need
clone:
git clone -b prod git@github.com:validmind/validmind-python.git $(SRC_DIR)
git clone git@github.com:validmind/validmind-python.git $(SRC_DIR)

# Copy over Jupyter notebooks
notebooks:
rm -rf $(DEST_DIR_NB)/ && mkdir -p $(DEST_DIR_NB)
# cp -r $(SRC_DIR)/notebooks/Quickstart_Customer Churn_full_suite.ipynb $(DEST_DIR_NB)/
mkdir -p $(DEST_DIR_NB)/how_to && cp -r $(SRC_DIR)/notebooks/how_to/. $(DEST_DIR_NB)/how_to
mkdir -p $(DEST_DIR_NB)/nlp && cp -r $(SRC_DIR)/notebooks/nlp/nlp_sentiment_analysis_demo.ipynb $(DEST_DIR_NB)/nlp/
mkdir -p $(DEST_DIR_NB)/time_series && cp -r $(SRC_DIR)/notebooks/time_series/tutorial_time_series_forecasting.ipynb $(DEST_DIR_NB)/time_series/
cp -r $(SRC_DIR)/notebooks/external_test_providers_demo.ipynb $(DEST_DIR_NB)/
mkdir -p $(DEST_DIR_NB)/tests && cp -r $(SRC_DIR)/notebooks/tests/MyCustomTest.py $(DEST_DIR_NB)/tests/
rm -rf $(DEST_DIR_NB)/how_to
mkdir -p $(DEST_DIR_NB)/how_to
cp -r $(SRC_DIR)/notebooks/how_to/. $(DEST_DIR_NB)/how_to
rm -rf $(DEST_DIR_NB)/time_series
mkdir -p $(DEST_DIR_NB)/time_series
cp -r $(SRC_DIR)/notebooks/time_series/tutorial_time_series_forecasting.ipynb $(DEST_DIR_NB)/time_series/

# Make Python library docs & copy them over
python-docs:
Expand Down
34 changes: 12 additions & 22 deletions site/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,19 @@ website:

- title: "Get Started"
contents:
- text: "Get Started"
file: guide/get-started.qmd
- guide/get-started.qmd
- text: "---"
- text: "Quickstarts"
file: guide/quickstart.qmd
- text: "Explore the Developer Framework — 10 minutes"
- file: guide/quickstart.qmd
contents:
- guide/before-you-begin.qmd
- guide/explore-validmind.qmd
- guide/next-steps.qmd
- text: "---"
- file: guide/tutorials.qmd
contents:
- guide/try-developer-framework-with-jupyterhub.qmd
- guide/try-developer-framework-with-docker.qmd
- guide/try-developer-framework-with-colab.qmd
- text: "Explore the Platform UI — 15 minutes"
contents:
- guide/explore-example-documentation-project.qmd
- guide/create-your-first-documentation-project.qmd
- guide/upload-to-documentation-project.qmd
- guide/try-developer-framework-with-jupyter-notebook.qmd
- text: "---"
- file: guide/overview.qmd
contents:
Expand All @@ -70,7 +68,6 @@ website:
- guide/license-agreement.qmd
- text: "Releases"
contents:
- guide/release-notes-2023-jun-22.qmd
- guide/release-notes-2023-may-30.qmd
# - file: guide/mrm.qmd
# contents:
Expand Down Expand Up @@ -131,23 +128,16 @@ website:
# - guide/dataset-object.qmd
# - guide/model-object.qmd
- text: "Testing"
contents:
- notebooks/how_to/run_a_template.ipynb
- notebooks/external_test_providers_demo.ipynb
- notebooks/how_to/implementing_custom_tests.ipynb
- notebooks/how_to/explore_test_suites_test_plans_and_tests.ipynb
- notebooks/how_to/run_a_test.ipynb
- notebooks/how_to/run_a_test_plan.ipynb
- notebooks/how_to/run_a_test_suite.ipynb
contents: notebooks/how_to/*.ipynb
# - guide/tabular-data-tests.qmd
# - guide/model-evaluation-tests.qmd
- text: "---"
- text: "Jupyter notebooks"
file: guide/jupyter-notebooks.qmd
contents:
- notebooks/Quickstart_Customer Churn_full_suite.ipynb
- notebooks/Introduction_Customer_Churn.ipynb
- notebooks/time_series/tutorial_time_series_forecasting.ipynb
- text: "Sensitivity Analysis: Natural Language Processing Analysis & Binary Classification using pytorch"
file: notebooks/nlp/nlp_sentiment_analysis_demo.ipynb
- text: "---"
- test: "Reference"
file: guide/reference.qmd
Expand Down
Loading