Course 1 Week 1 Assignment

Hello, in the jupyter notebook all public test passed, but when I submit my assisgnment I get a 0/10 grade.

[ValidateApp | INFO] Validating '/home/jovyan/work/submitted/courseraLearner/W1_Assignment/C1W1_Assignment.ipynb'
[ValidateApp | INFO] Executing notebook with kernel: python3
2021-11-24 20:44:55.512662: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer.so.6'; dlerror: libnvinfer.so.6: cannot open shared object file: No such file or directory
2021-11-24 20:44:55.512749: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer_plugin.so.6'; dlerror: libnvinfer_plugin.so.6: cannot open shared object file: No such file or directory
2021-11-24 20:44:55.512760: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:30] Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.
Tests failed on 10 cell(s)! These tests could be hidden. Please check your submission.
==========================================================================================
The following cell failed:

    # You can click `File -> Open` in the menu above and open the `utils.py` file 
    # in case you want to inspect the unit tests being used for each graded function.
    
    utils.test_white_df(white_df)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-3-8e54b75f4c04> in <module>
          2 # in case you want to inspect the unit tests being used for each graded fun...
          3 
    ----> 4 utils.test_white_df(white_df)
    
    NameError: name 'white_df' is not defined


==========================================================================================
The following cell failed:

    utils.test_red_df(red_df)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-6-8b24a524685c> in <module>
    ----> 1 utils.test_red_df(red_df)
    
    NameError: name 'red_df' is not defined


==========================================================================================
The following cell failed:

    utils.test_df_drop(df)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-13-02ac41180da9> in <module>
    ----> 1 utils.test_df_drop(df)
          2 
    
    NameError: name 'df' is not defined


==========================================================================================
The following cell failed:

    utils.test_data_sizes(train.size, test.size, val.size)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-17-a858ae1ed80e> in <module>
    ----> 1 utils.test_data_sizes(train.size, test.size, val.size)
          2 
    
    NameError: name 'train' is not defined


==========================================================================================
The following cell failed:

    utils.test_format_output(df, train_Y, val_Y, test_Y)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-22-8710fc094fd1> in <module>
    ----> 1 utils.test_format_output(df, train_Y, val_Y, test_Y)
    
    NameError: name 'df' is not defined


==========================================================================================
The following cell failed:

    utils.test_norm(norm_train_X, norm_val_X, norm_test_X, train, val, test)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-26-67372534a214> in <module>
    ----> 1 utils.test_norm(norm_train_X, norm_val_X, norm_test_X, train, val, test)
    
    NameError: name 'norm_train_X' is not defined


==========================================================================================
The following cell failed:

    utils.test_base_model(base_model)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-28-468cefd178cd> in <module>
    ----> 1 utils.test_base_model(base_model)
    
    ~/work/submitted/courseraLearner/W1_Assignment/utils.py in test_base_model(base_mod...
        215 
        216     test_inputs = tf.keras.layers.Input(shape=(11,))
    --> 217     test_output = base_model(test_inputs)
        218     test_model = Model(inputs=test_inputs, outputs=test_output)
        219 
    
    <ipython-input-27-9c492f0b227a> in base_model(inputs)
          7 
          8     # connect a Dense layer with 128 neurons and a relu activation
    ----> 9     x = Dense(128, activation = 'relu', input_shape = (norm_train_X.shape[1...
         10 
         11     # connect another Dense layer with 128 neurons and a relu activation
    
    NameError: name 'norm_train_X' is not defined


==========================================================================================
The following cell failed:

    utils.test_final_model(final_model)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-30-627ff8303ae7> in <module>
    ----> 1 utils.test_final_model(final_model)
    
    ~/work/submitted/courseraLearner/W1_Assignment/utils.py in test_final_model(final_m...
        262 
        263     test_inputs = tf.keras.layers.Input(shape=(11,))
    --> 264     test_output = final_model(test_inputs)
        265 
        266     test_cases = [
    
    <ipython-input-29-01aacae5cd63> in final_model(inputs)
          7 
          8     # get the base model
    ----> 9     x = base_model(inputs)
         10 
         11     # connect the output Dense layer for regression
    
    <ipython-input-27-9c492f0b227a> in base_model(inputs)
          7 
          8     # connect a Dense layer with 128 neurons and a relu activation
    ----> 9     x = Dense(128, activation = 'relu', input_shape = (norm_train_X.shape[1...
         10 
         11     # connect another Dense layer with 128 neurons and a relu activation
    
    NameError: name 'norm_train_X' is not defined


==========================================================================================
The following cell failed:

    utils.test_model_compile(model)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-32-9a25711e305e> in <module>
    ----> 1 utils.test_model_compile(model)
    
    NameError: name 'model' is not defined


==========================================================================================
The following cell failed:

    utils.test_history(history)

The error was:

    ---------------------------------------------------------------------------
    NameError                                 Traceback (most recent call last)
    <ipython-input-34-bb2fa200c0ad> in <module>
    ----> 1 utils.test_history(history)
    
    NameError: name 'history' is not defined

I will submit an issue on this so the QA team can look into it.

Hi Pedro! Can you open your notebook and save it again then resubmit? Based on the error messages, it seems the grader was grading a blank notebook. Also make sure that you are not working on a renamed notebook (e.g. C1W1_Assignment_1.ipynb). It has to be named exactly as C1W1_Assignment.ipynb which is the default name when you first opened it. Let us know how it goes. Hope it works! Thanks!

1 Like

Hello Chris! Thank you for the answer but I keep getting the same error. I think my notebook is named correctly. I also opened and saved the notebook again, but still got the error.

Hi Pedro! Please check your inbox. Thanks!

Hi Pedro! It seems you are working on an old version of the notebook. The boilerplate code looks a bit different. Please get the latest version and fill in your answers. Here are the steps to refresh your notebook:

  1. Rename your current notebook.
  2. Click on the ? Help button at the upper right corner of the lab to open the Lab Help sidebar.
  3. Click on Get Latest Version

That should open a blank version of the latest notebook. Please put your answers but be wary of changing any non-graded code (e.g. assigned URI string variables). I think it should work now with those changes. If not, feel free to let us know. Thanks!

1 Like

Hello! I did these steps and still got the same error.

Even I am having the same issues…:frowning:

Hello! I did these steps and still got the same error.

Hi! Sorry for the delay. Can you post here the value of the URI variables? Thank you.

Hi Reevan! Welcome to Discourse! If you’re still having issues, please check your inbox. Thank you!

URI = ‘http://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-white.csv

Hmm… That is strange. Can you rename that notebook and get a fresh one again? Then please post here the blank notebook that you got (i.e. without any of your solutions). It might be a problem with Coursera. I’ve tried several times to refresh my workspace and the URI never points to that. Thank you!

It finally worked out!! Thanks!