Archives
-
Recent Posts
- Error “join: multi-character tab `\\t’” for using join tab
- Two methods to redirect output for “set -x”
- “set -x”: Prints executed commands and their arguments
- How to start new process or run shell commands within python?
- Mean Absolute Error (MAE) and Mean Square Error (MSE)
- “Nohup” and “Screen”
- Reference of Scheme or Lisp
- Google’s Protocol Buffers: Beautiful and Easy
- Moses Support Digest: CALL FOR PAPERS – PBML
- Moses Support Digest: moses-irstlm memory racing with 5-gram lm
- Moses Support Digest: EMS table binarization
- Moses Support Digest: processPhraseTable in windows
- Moses Support Digest: compiling on Mac
- Moses Support Digest: about CreateOnDiskPt parameter
- Moses Support Digest: experiment management system and Moses scripts
Categories
February 2012 M T W T F S S « Apr 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Tags
ACL Artificial Intelligence Bayesian Modeling Bayesian Networks binary phrase table BLEU chart cygwin decoder decoding Dictionary dos fedora giza++ Graphical Models Hierarchical rule IRSTLM language model Linux lm Machine learning Maximum Entropy Model moses nbest NLP nlpers openTMS phrase-table plugin POS programming python RandLM RDBMS reordering set -x shell SMT SRILM Statistical Machine Translation suffix arrays Summarization support wmt2010 WordPressRecent Comments
- Steve Phillips on How to start new process or run shell commands within python?
- Lita on Moses Support Digest: different servers different time different result
- shamtest on Mean Absolute Error (MAE) and Mean Square Error (MSE)
- emnlp on How to start new process or run shell commands within python?
- emnlp on Mean Absolute Error (MAE) and Mean Square Error (MSE)
- 52nlp on About
- David Walton on About
- rex moreno on Moses Support Digest: moses-irstlm memory racing with 5-gram lm
- 52nlp on WpMathEditor
- Ali Bell on WpMathEditor
Meta
Blogroll
Tag Archives: programming
Error “join: multi-character tab `\\t’” for using join tab
The default separator for linux join is whitespace, when I try to use “t” to instead of whitespace with the command “join file1 file2 -t “t””, following error occurred: join: multi-character tab `\t Here is the resolved method is found … Continue reading
Two methods to redirect output for “set -x”
I found that the standard direct cannot redirect the output of the “set -x”, following is two methods to redirect output for “set -x” by google and my co-worker: 1: ./test.sh > test.log 2>&1 2: test.sh 2>&1 | tee -a … Continue reading
“set -x”: Prints executed commands and their arguments
I wrote a shell script and every time when I want print the executed commands and arguments I used the “echo” to echo the executed commands, this is not convenient. At the same time I use my co-worker’s shell script, … Continue reading
Posted in Programming Skill
Tagged Learning the bash Shell, Linux, programming, set -x, shell
Leave a comment
How to start new process or run shell commands within python?
Starting new process or running shell commands is a common task in python and there are many ways to excute this process. After google the problem in the web, I found the summary of the “start new process or run … Continue reading
Posted in Programming Skill
Tagged commands module, os.popen, os.system, programming, python, subprocess module
2 Comments