Programming Assignment: Breast Cancer Classification error

Hello, I was able to run the iris script in the browser and got the correct results but I got the error DevTools failed to load source map: Could not load content for https://cdn.jsdelivr.net/npm/@tensorflow/tf.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

I am now trying to run the Breast Cancer classification after doing the coding and I am pretty sure I have the code correct but I keep getting
DevTools failed to load source map: Could not load content for https://cdn.jsdelivr.net/npm/@tensorflow/tf.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
just like in the iris classification problem but the iris one would run and this one will not.
How can I diagnose what is going wrong and how can I fix the above error?

Thanks!

Never mind, I figured it out.
It is my first time programming in JavaScript and I just had a ton of syntax errors.

The solution is to replace
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script>
with
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest/dist/tf.min.js"></script>

If you need details, look here: Remove ‘sourceMappingURL’ comment from automatic minified build #18084 .

You may notice that this site uses the correct version: Set up a TensorFlow.js project. Use a script tag.