Welcome to hosting your nltk model on Algorithmia! This guide is designed as an introduction to hosting a nltk model and publishing an algorithm even if you’ve never used Algorithmia before.
Prerequisites
Before you get started hosting your model on Algorithmia there are a few things you’ll want to do first:
Train your model.
After training your NLTK model, you’ll want to save the pickled model so you can upload it to Algorithmia.
Create a Data Collection
Now you’ll want to create a data collection to host your pickled model.
-
To use the Data API, log into your Algorithmia account and create a data collection via the Data Collections page.
-
Click on “Add Collection” under the “My Collections” section on your data collections page.
-
After you create your collection you can set the read and write access on your data collection. For more information check out: Data Collection Types
Upload your Model into a Collection
Next, upload your pickled model to your newly created data collection.
-
Load model by clicking box “Drop files here to upload”
-
Note the path to your files: data://username/collections_name/pickled_model.pkl
Create your Algorithm
Creating your algorithm is easy!
- To add an algorithm, simply click “Add Algorithm” from the user profile icon.
- Name your algorithm, select the language, choose permissions and make the code either open or closed source.
Note: There is also a checkbox for ‘Standard Execution Environment’ or ‘Advanced GPU’. For machine learning models you will want to check ‘Standard Execution Environment’.
Set your Dependencies
Now is the time to set your dependencies that your model relies on.
- Click on the “Dependencies” button at the top right of the UI and list your packages under the required ones already listed and click “Save Dependencies” on the bottom right corner.
Load your Model
Here is where you load your pickled model that is to be called by the apply() function. Our recommendation is to preload your model in a separate function before apply(). The reasoning behind this is because when your model is first loaded it can take some time to load depending on the file size. However, with all subsequent calls only the apply() function gets called which will be much faster since your model is already loaded!
Here is some code that has been adapted from the NLTK online books tutorial Learning to Classify Text
"""
NLTK algorithm to label names female or male based on last letter of names
Input: String
Note when testing in console do not add quotations to input since
it counts the quotations as part of the input.
"""
import Algorithmia
import csv
import pickle
client = Algorithmia.client()
def load_model():
# Get file by name
# Open file and load model
file_path = 'data://stephanie/demos/gender_model.pkl'
model_path = client.file(file_path).getFile().name
# Open file and load model
with open(model_path, 'rb') as f:
model = pickle.load(f)
return model
# Load model outside of apply function
# This gets loaded once when called outside the apply function
classifier = load_model()
def gender_features(word):
# Last letter as feature
print("word", word[-1])
return {'last_letter': word[-1]}
def apply(input):
name = input
model = classifier.classify(gender_features(name))
output = {'gender': model}
print(output)
return output
If you are authoring an algorithm, avoid using the ‘.my’ pseudonym in the source code. When the algorithm is executed, ‘.my’ will be interpreted as the user name of the user who called the algorithm, rather than the author’s user name.
Publish your Algorithm
Last is publishing your algorithm. The best part of hosting your model on Algorithmia is that users can access it via an API that takes only a few lines of code to use! Here is what you can set when publishing your algorithm:
On the upper right hand side of the algorithm page you’ll see a purple button “Publish” which will bring up a modal:
In this modal, you’ll see a Changes tab, a Sample I/O tab, and one called Versioning.
Changes shows you your commit history and release notes.
Sample I/O is where you’ll create your sample input and output for the user to try under Try the API in the Run tab. When you add a sample input, make sure to test it out with all the inputs that you accept since users will be able to test your algorithm with their own inputs.
Under the Versioning tab, you can select whether your algorithm will be for public use or private use as well as set the royalty. The algorithm can either be royalty-free or charge per-call. If you opt to have the algorithm charge a royalty, as the author, you will earn 70% of the royalty cost.
Check out Algorithm Pricing for more information on how much algorithms will cost to run.
Under Semantic Versioning you can choose which kind of release your change should fall under: Major, Minor, or Revision.
If you are satisfied with your algorithm and settings, go ahead and hit publish. Congratulations, you’re an algorithm developer!
For more information and detailed steps: creating and publishing your algorithm
Working Demo
If you would like to check this demo out on the platform you can find it here: NLTK-demo
That’s it for hosting your nltk model on Algorithmia!