Load Model Error

I got this error after I tag my repository for submission and system evaluate my agent.
Can someone help about that? I have complete model_target in my repository… what is the problem?
ID 158787

========================
2021-10-06 17:08:55.324011: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library ‘libcudart.so.11.0’; dlerror: libcudart.so.11.0: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/nvidia/lib:/usr/local/nvidia/lib64
2021-10-06 17:08:55.324042: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
Traceback (most recent call last):
File “aicrowd_rollout.py”, line 34, in
main()
File “aicrowd_rollout.py”, line 22, in main
agent = load_player_agent()
File “aicrowd_rollout.py”, line 17, in load_player_agent
agent = SubmissionConfig.submission_agent()
File “/home/aicrowd/agents/my_agent.py”, line 9, in init
self.agent_type = models.load_model(’./model_folder/model_target’, compile=False)
File “/srv/conda/envs/notebook/lib/python3.7/site-packages/keras/saving/save.py”, line 205, in load_model
return saved_model_load.load(filepath, compile, options)
File “/srv/conda/envs/notebook/lib/python3.7/site-packages/keras/saving/saved_model/load.py”, line 108, in load
meta_graph_def = tf.internal.saved_model.parse_saved_model(path).meta_graphs[0]
File “/srv/conda/envs/notebook/lib/python3.7/site-packages/tensorflow/python/saved_model/loader_impl.py”, line 121, in parse_saved_model
constants.SAVED_MODEL_FILENAME_PB))
OSError: SavedModel file does not exist at: ./model_folder/model_target/{saved_model.pbtxt|saved_model.pb}

who have same problem use this path and command to load your model:
self.agent = tf.keras.models.load_model('/home/aicrowd/agents/model_target', compile=False)