Description
Elixir Client for Microsoft Cognitive Services. With this library you can access the cognitive services api and add machine intelligence to your elixir application!
Cognixir alternatives and similar packages
Based on the "Natural Language Processing (NLP)" category.
Alternatively, view Cognixir alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Do you think we are missing an alternative of Cognixir or a related project?
Popular Comparisons
README
Cognixir
Elixir API Wrapper for Cognitive Services from Microsoft
Installation
The package can be installed as:
Add
Cognixir
to your list of dependencies inmix.exs
:def deps do [{:cognixir, "~> 0.4.0"}] end
Ensure
Cognixir
is started before your application:def application do [applications: [:cognixir]] end
Configuration
You need a subscription key to access the different cognitive service api. Head over to https://www.microsoft.com/cognitive-services, create an account and fetch your api key. You can get started with a free subscription.
Add to your config.exs:
# api key for text analytics
config :cognixir, ta_api_key: "<your key>"
# api key for computer vision
config :cognixir, cv_api_key: "<your key>"
# api key for face api
config :cognixir, fa_api_key: "<your key>"
Implemented Features
Text Analytics
- detect language [x]
- initiate topic analysis [x]
- detect key phrases [x]
- detect sentiment [x]
Computer Vision
- analyze image [x]
- describe image [x]
- get thumbnail []
- list domain specific models []
- OCR [x]
- recognize domain specific content []
- tag image [x]
Face Api
- face detection [x]
- find similar []
- group []
- identify []
- verify [x]
Api Documentation
You can find the api documentation for published packages on Hex Doc
Demo Application & Usage
If you want to see this api in action, check out CognixirDemo. That application tries to illustrate the main features and usage of this library. For api examples you might also have a look in the tests directory.