jessehostetler commited on
Commit
d86b157
·
1 Parent(s): 9f0087d

Add Troubleshooting section.

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -78,3 +78,22 @@ You will see an error like the following:
78
  ```RuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from http://www.nvidia.com/Download/index.aspx```
79
 
80
  We recommend using [nvidia/cuda:12.6.3-cudnn-runtime-ubuntu24.04](https://hub.docker.com/layers/nvidia/cuda/12.6.3-cudnn-runtime-ubuntu24.04/images/sha256-23debbe74125dc84df96df79cff42079b3b15265c27140714fd27b5aa718faa4) or a similar image as your base image. This image has been validated to work correctly.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  ```RuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from http://www.nvidia.com/Download/index.aspx```
79
 
80
  We recommend using [nvidia/cuda:12.6.3-cudnn-runtime-ubuntu24.04](https://hub.docker.com/layers/nvidia/cuda/12.6.3-cudnn-runtime-ubuntu24.04/images/sha256-23debbe74125dc84df96df79cff42079b3b15265c27140714fd27b5aa718faa4) or a similar image as your base image. This image has been validated to work correctly.
81
+
82
+
83
+ # ❌ Troubleshooting
84
+
85
+ If you encounter any problems, please don't hesitate to ask for help in the [Discord server](https://discord.com/channels/1434971046485819483). When posting about a problem, please include your Team ID, the ID of the Submission that encountered the problem, and the complete stack trace of any exceptions that occurred. Remember that this is a public Discord server and make sure you don't post any credentials or other sensitive information.
86
+
87
+ ### Checking submission status
88
+
89
+ You can view all of your submissions to the challenge here: https://app.dyff.io/dashboard/submissions
90
+
91
+ Click through to individual submissions to see the status of the different steps in the submission pipeline.
92
+
93
+ ### `pydantic_core._pydantic_core.ValidationError` when using CLI tools / Dyff SDK
94
+
95
+ This usually means you have an outdated version of the Dyff SDK. Upgrade to the latest version with:
96
+
97
+ ```
98
+ python -m pip install --upgrade dyff
99
+ ```