I have a python program which I run in Linux with a lot of parameters. In Unix I use \ to separate each line.
How can I format those same paths in Windows?
Here is the command I am using in Linux:
python -m bin.train \
  --config_paths="
      ./example_configs/nmt_small.yml,
      ./example_configs/train_seq2seq.yml,
      ./example_configs/text_metrics_bpe.yml" \
  --model_params "
      vocab_source: $VOCAB_SOURCE
      vocab_target: $VOCAB_TARGET" \
  --input_pipeline_train "
    class: ParallelTextInputPipeline
    params:
      source_files:
        - $TRAIN_SOURCES
      target_files:
        - $TRAIN_TARGETS" \
I want to do this in Windows. How can I do that in a single line (or) can I simply keep this as is and run it?
 
     
    