while running the tutorial, I run the code below
%%bash --bg
nohup tensorflow_model_server
--rest_api_port=8501
--model_name=tfrbert
--model_base_path="/content/drive/MyDrive/app/model14/export/best_model_by_loss/" >server.log 2>&1
it worked for me befor. but now I encounter with this error:
tensorflow_model_server: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.28' not found (required by tensorflow_model_server) tensorflow_model_server: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version
GLIBCXX_3.4.26' not found (required by tensorflow_model_server)
tensorflow_model_server: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by tensorflow_model_server)
I searched a lot, but nothing helped. does anybody know how to solve the problem? thanks a lot.