Skip to main content

Deep Learning and more NLP toolkit

Project description

Kolibri

A comprehensive multi modal machine learning platform

Contents

├── README.md
├── config

  • README.md: this documentation

Setting up PyFreeLing in Mac OS Sierra

There are 4 types of dependencies:

  • Homebrew, a package manager to install software in Mac
  • FreeLing, an open source language analysis tool suite
  • Python 3
  • lxml, a Python library to work with XML
  • libxml2 and libxslt C libraries which are dependencies of lxml

Install Homebrew

Follow Neil Gee's guide to install and set up homebrew for Mac OS Sierra

Install FreeLing

Use Homebrew to install FreeLing by running this command:

brew install freeling

Homebrew will take care of any dependencies.

Install Python 3

You can install Python 3 with Homebrew following the instructions from The Hitchhiker's Guide to Python or following the very complete Lisa Tagliaferri's guide.

Basically:

brew install python3

Install libxml2 and libxslt

macOS Sierra already provides libxml2 and libxslt. They can be installed through Homebrew though:

brew install libxml2
brew install libxslt

Install lxml

Now, you are ready to install lxml:

pip3 install lxml

Once you have installed FreeLing and all the dependencies, you will always need to start a FreeLing analyzer in server mode

Starting a FreeLing analyzer in server mode

analyze -f en.cfg --server --port 50005 &

Install pyaudio

install pyaudio in Windows

Intalling pyaudiocan be tricky in window platform and generally 'pip install pyaudio' will not work. see the following stackoverflow response if you have any problem.

https://stackoverflow.com/questions/52283840/i-cant-install-pyaudio-on-windows-how-to-solve-error-microsoft-visual-c-14

Install pyaudio in mac os x

First install portaudio

brew install portaudio 

the run the following command

pip install --global-option='build_ext' --global-option='-I/usr/local/include' --global-option='-L/usr/local/lib' pyaudio

install pocketsphinx

Instaaling this library could be difficult on some systems. If the command:

pip install pocketsphinx 

did not work for you then try the following steps

git clone --recursive https://github.com/bambocher/pocketsphinx-python
cd pocketsphinx-python

Edit file pocketsphinx-python/deps/sphinxbase/src/libsphinxad/ad_openal.c.

Change

#include <al.h>
#include <alc.h>

to

#include <OpenAL/al.h>
#include <OpenAL/alc.h>

and finally:

python setup.py install

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

kolibri_ml-1.1.88-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file kolibri_ml-1.1.88-py3-none-any.whl.

File metadata

  • Download URL: kolibri_ml-1.1.88-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.11

File hashes

Hashes for kolibri_ml-1.1.88-py3-none-any.whl
Algorithm Hash digest
SHA256 41dc32a90006539815b5419ed95d7d7c53fa01f0eb0ecc5b7d35ce41d0cd94ed
MD5 4a82faba9a15527872064694ca2ef18b
BLAKE2b-256 ec95b505fb4352eb2b2de7bdbe0c7f79d3b3354bd19eb0b4bfe4db81219e3acb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page