--train_files: command not found

I am getting this error when I ran final script:
–train_files: command not found

Surprisingly, it worked a few hours ago, now it is not.
Anyone can explain?

@lissyx maybe you can answer me?

Best

mostly a typo … but it’s going to be hard to help you if you persist not giving context

Sorry @lissyx for not giving the context, btw u are so quick)

my run.sh:

python DeepSpeech/DeepSpeech.py \

    --train_files "/home/dulan/data/train.csv" \
    --dev_files "/home/dulan/data/dev.csv" \
    --test_files "/home/dulan/data/test.csv" \
    --train_batch_size 32 \
    --dev_batch_size 32 \
    --test_batch_size 32 \
    --epoch 1 \
    --dropout_rate 0.22 \
    --learning_rate 0.00095 \
    --alphabet_config_path "/home/dulan/models/alphabet.txt"\
    --lm_binary_path "/home/dulan/models/lm.binary" \
    --lm_trie_path "/home/dulan/models/trie" \
    --word_count_weight 3.5 \
    --log_level 1 \
    --display_step 1 \
    --export_dir "/home/dulan/models"

When I run this error:

Traceback (most recent call last):
File “DeepSpeech/DeepSpeech.py”, line 941, in
tf.app.run(main)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/tensorflow/python/platform/app.py”, line 125, in run
_sys.exit(main(argv))
File “DeepSpeech/DeepSpeech.py”, line 893, in main
train()
File “DeepSpeech/DeepSpeech.py”, line 388, in train
hdf5_cache_path=FLAGS.train_cached_features_path)
File “/home/dulan/DeepSpeech/util/preprocess.py”, line 56, in preprocess
file = pandas.read_csv(csv, encoding=‘utf-8’, na_filter=False)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/pandas/io/parsers.py”, line 678, in parser_f
return _read(filepath_or_buffer, kwds)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/pandas/io/parsers.py”, line 440, in _read
parser = TextFileReader(filepath_or_buffer, **kwds)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/pandas/io/parsers.py”, line 787, in init
self._make_engine(self.engine)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/pandas/io/parsers.py”, line 1014, in _make_engine
self._engine = CParserWrapper(self.f, **self.options)
File “/home/dulan/tmp/deepspeech-venv/lib/python3.5/site-packages/pandas/io/parsers.py”, line 1708, in init
self._reader = parsers.TextReader(src, **kwds)
File “pandas/_libs/parsers.pyx”, line 384, in pandas._libs.parsers.TextReader.cinit
File “pandas/_libs/parsers.pyx”, line 695, in pandas._libs.parsers.TextReader._setup_parser_source
FileNotFoundError: File b’’ does not exist
./run.sh: line 4: --train_files: command not found

This is where properly posting using code formatting is important … There’s something wrong in your script, can’t tell why, but likely it’s just broken …

@lissyx I have tried many times, but getting the same error.
What I can do ?

Do what I asked for? Share your script in a way we can check for subtiles errors ? I’m pretty sure you lack some \ somewhere …