I see proper installation guide available for Giza, but not for Giza++. The instructions for installing the former (as found here http://giza.sourceforge.net/documentation/installation.html) is obviously not working on the latter. I am using Ubuntu 12.04.
Is there a proper installation guide for Giza++ on Ubuntu?
2.2k Views Asked by Satarupa Guha At
2
There are 2 best solutions below
1
alvas
On
TL;DR
sudo apt-get install build-essential git-core pkg-config automake libtool wget zlib1g-dev python-dev libbz2-dev
git clone https://github.com/moses-smt/mosesdecoder.git
cd mosesdecoder
make -f contrib/Makefiles/install-dependencies.gmake
./compile.sh
When you install Moses, GIZA++ is also installed in the mosesdecoder/bin/ directory. See http://www.statmt.org/moses/?n=Development.GetStarted
To install MGIZA++, do this:
sudo apt-get install -y cmake libboost-all-dev
git clone https://github.com/moses-smt/mgiza.git
cd mgiza/mgizapp
cmake . && make && make install
cp scripts/merge_alignment.py bin/
The binaries for MGIZA++ would be in mgiza/mgizapp/bin/.
Related Questions in INSTALLATION
- INSTALL_FAILED_DUPLICATE_PERMISSION: Package
- How can i install pyaudio on MacOS
- Problem installing Manim on Windows 11. Error regarding the wrong "decorator" version
- 'No such file or directory' installing RTC-Tools through pip
- Install Postfix Mail Server
- Plugin with id 'com.android.application' not found in Github Winlator Project
- OSError: [WinError 5] Access is denied: 'c:\\python311\\scripts\\pip.exe' Consider using the `--user` option
- Installing the C compiler for LC3
- Why is installation of MySQL on my mac is always halted
- OS: Parrot OS (hashcat : Depends: libminizip1t64 but it is not installable)
- GROMACS 2024 with CP2K 9.1 BUILD
- After the installation process When the server is running, nothing is displayed on the page myddleware
- PHP php_mongodb.dll for 32bit
- A given package is installed but spyder won't see it
- I cant install libraries?
Related Questions in NLP
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Clarification on T5 Model Pre-training Objective and Denoising Process
- The training accuracy and the validation accuracy curves are almost parallel to each other. Is the model overfitting?
- Give Bert an input and ask him to predict. In this input, can Bert apply the first word prediction result to all subsequent predictions?
- Output of Cosine Similarity is not as expected
- Getting an error while using the open ai api to summarize news atricles
- SpanRuler on Retokenized tokens links back to original token text, not the token text with a split (space) introduced
- Should I use beam search on validation phase?
- Dialogflow failing to dectect the correct intent
- How to detect if two sentences are simmilar, not in meaning, but in syllables/words?
- Is BertForSequenceClassification using the CLS vector?
- Issue with memory when using spacy_universal_sentence_encoder for similarity detection
- Why does the Cloud Natural Language Model API return so many NULLs?
- Is there any OCR or technique that can recognize/identify radio buttons printed out in the form of pdf document?
- Model, lexicon to do fine grained emotions analysis on text in r
Related Questions in UBUNTU-12.04
- php with ioncube given error /usr/local/ioncube/ioncube_loader_lin_5.3.so: undefined symbol: _empty_map
- How to use update-alternatives to update my sage command
- Chromedriver installed but not working Linux
- unable to uninstall netbeans ide in ubuntu
- Nodejs package cannot be installed in ubuntu
- C strncmp return 1
- Docker - Extracting/Pull very slow
- Ubuntu openssl not asking for Common Name
- CDO to process my NETCDF files (average of a grid) using UBUNTU
- Converting python file into executable in ubuntu 12.04 OS
- ERROR (no such process) returned when I'm hit sudo supervisorctl status
- Report and Alert Configuration- Email send but cant Receive
- Vistual host UBUNTU shows This site can’t be reached
- Unable to install Linux kernel on Ubuntu 20.04
- Get PyCharm to acknowledge PyQt4 package (Ubuntu)
Related Questions in GIZA++
- Error reading files in Mosesdecoder train-model script (GIZA++, mgiza)
- What do the counts in giza++ phrase-table mean?
- GIZA++ :Forbidden zero sentence length 0
- How to speedup mkcls step in mgiza++ or giza++, it taking up lots of time for word clustering?
- How to specify custom boost directory to mgiza for moses?
- Moses machine translation - using Moses with Anymalign
- GIZA++ output missing *.ti.final and *actual.ti.final files
- GIZA++' s command "plain2snt.out" does nothing in CYGWIN
- how are the words clustered into word classes in the mkcls files of GIZA++ and on what basis are they grouped?
- cygwin occures an error :"Segmentation fault (core dumped)", when running GIZA++
- Is there a proper installation guide for Giza++ on Ubuntu?
- GIZA++ - How is alignment score calculated?
- giza stream.h error fatal
- How to resolve mkcls taking up lots of memory and time for word alignment using GIZA++?
- Sentence segmentation and aligment in noisy text corpus
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Assuming that you have the dependencies, simple install with:
I've uploaded the pre-compiled binaries and you can get it here, but i'm not sure whether it works on your machine:
If you run into dependencies problems, simply install the dependencies required by the MOSES toolkit:
Personally, I would just use the fast aligner which implemented IBM model 2 without the whole fuss about
mkcls, see https://github.com/clab/fast_align