Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is this the correct guide for tensorflow text summarization?

Reading the tensorflow text summarization model it states "The results described below are based on model trained on multi-gpu and multi-machine settings. It has been simplified to run on only one machine for open source purpose."

Further in the guide this command is invoked :

bazel build -c opt --config=cuda textsum/...

Does this command not relate to cuda/gpu? Why is this command truncated?

like image 711
blue-sky Avatar asked Mar 25 '26 19:03

blue-sky


1 Answers

This is a bazel command: --config=cuda means "use the CUDA build configuration (and generate GPU-compatible code)", and textsum/... means "all targets under the directory textsum" (i.e. the command isn't truncated and you should type the literal ... when entering the command).

like image 176
mrry Avatar answered Mar 28 '26 01:03

mrry



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!