Skip to main content

A python library for pinning a text to one of texts list. Useful for natural commands parsing.

Project description

TextPinner

A tool to pin text to a specific set of texts. Useful to build a tool that takes any text input then infer which one of the anchor texts is the best one.

Description

TextPinner pins text to a set of anchor texts. This is useful to build a natural language command module. Imagine I have a robot. For example the InMoov robot can do a bunch of actions but you some how need to ask it to do something by saying exactly what you have already specified as possible inputs. But what if you can say the command how ever you like it, and the robot understands which one of the actions is the one you intended it to?

This code, uses Google's BERT model to encode both the text you say, and the list of anchor texts describing what the robot can do. Now we simply find the nearest anchor text encoding to the encoding of the text you said. Bingo, now you have anchored the text to waht the robot can do and you can say the command how ever you like it. The robot will understand.

Actually this works even when you tell the commands in another language (tryed it in French).

You can imagine doing this for a hue lighting system or other command based app. Be creative

Installation

To install TextPinner, you can use:

pip install TextPinner


It is advised to install cudatoolkit if you have a cuda enabled GPU.
```bash
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113 

USE

First import TextPinner class

from TextPinner import TextPinner

Create an instance of TextPinner. There are one mandatory parameter which is the list of anchor text, and an optional parameter which is the minimum similarity between the word and the anchors. This allows the AI to detect if the text the user is entering is too far from any of the anchors. By default the value is None (don't check for minimal distance). A value of 0.5 has proven to be a good distance for the tests we have done but this can be changed depending on the anchors you are using. Feel free to use another value :

tp = TextPinner(["raise right hand", "raise left hand", "nod", "shake hands", "look left", "look right"], minimum_similarity_level=0.5)

Now you are ready to pin some text using process method that returns multiple useful outputs.

text_command = input("Input a text :")
output_text, index, similarity=tp.process(text_command)
  • The index tells you which text of your anchors list is most likely to have the same meaning as the text_command. If it is -1, this means that the meaning of the text is too far from any of the anchors. If maximum_distance is None then there is no maximum distance test and the AI will return the anchor with nearest meaning.
  • output_text is literally the anchor text that has the nearest meaning to the one of text_command.
  • similarity is a numpy array containing the similarity of this text with each of the anchor texts. Useful to get an idea about the certainty of the algorithm about its decision.

Examples

In the examples section we provide two examples: 1 - A simple text pinner example where the user is prompted to enter a text and then we tell him which anchortext is the nearest in meaning to the text he typed. 2 - A voice command example that uses voice to inpuit the text then gives the most likely output

TextPinner example

This example do not need any special libraries as it asks the user to input text then finds the nearest text in meaning from the anchor texts.

TextPinner Audio example

This examle uses audio so that you can talk to the AI and it uses TextPinner to make the AI understand your querry and perform something. If the query is far from what the AI knows, it will tell you that the meaning of what you say is out of its scope. Here every thing is in Audio. you talk and the AI answers. So we need to install some libraries.

We use gtt for text to speach audio synthesis and pygame to play the synthethized audio.

To install it youse this command:

pip install gtts

We need to install poyaudio as it is no more in the Pypi repositories. So you can go here https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio and download the version suitable for your python distribution. Then install it using

pip install <the path to the wheel file you just downloaded>

Now you are ready to talk to clip. Every time the AI will ask you to issue a commend. When you say something the AI analyzes the meaning and if it is close to the meening of anchor text, it will pin it to that functionality and tell you that the nearest anchor text is that one. If the meaning of what you said is different from the command, then the AI will tell you that it is far from the anchor texts and ask you to try again.

To exit the application, you just need to say exit.

Conversational AI example

This is more like a dictionary based conversation AI that uses TextPinner to make it easy to speak in natural language and pins to prefixed texts and gives predefined answers for each question.

You basically need to install the same stuff as in TextPinner Audio example.

Project details


Download files

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

Source Distribution

TextPinner-0.0.7.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

TextPinner-0.0.7-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file TextPinner-0.0.7.tar.gz.

File metadata

  • Download URL: TextPinner-0.0.7.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7

File hashes

Hashes for TextPinner-0.0.7.tar.gz
Algorithm Hash digest
SHA256 d41d75a85d820ee5f4ea5a7e780ffd31625006807c0b25993405b92581a24d53
MD5 30943b55d95e8f03531429271097ee4a
BLAKE2b-256 3ac6d813781e8df4971b35c61b850541e6730339ddbd23d5a57036ee5d3ce056

See more details on using hashes here.

File details

Details for the file TextPinner-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: TextPinner-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7

File hashes

Hashes for TextPinner-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 970ae63520a48ce78ce550cc615966c810dd31c09d02657b06c612d1418248cf
MD5 699dc80a55bc6954e9a3218553204ff6
BLAKE2b-256 8b4c7b61e700cfd81ec0d3089e637f028f16dcc6ec9e17196d90884de4fa89b6

See more details on using hashes here.

Supported by

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