This guide provides a walk-through of how to use the official Algorithmia Swift Client to call algorithms and manage your data through the Algorithmia platform.
Here you will learn how to install the Algorithmia Swift Client, work with the Data API by uploading and downloading files, create and update directories and permission types and last, you’ll learn how to call an algorithm that summarizes text files.
To follow along you can create a new Swift script or if you’d rather, you can follow the examples in the Swift REPL.
Getting Started with Algorithmia
The official Algorithmia Swift Client is published via CocoaPods and additional reference documentation can be found in the Algorithmia Client CocoaDocs.
You can install via CocoaPods by adding it to your Podfile:
And then run pod install
Authentication
Next, login to Algorithmia to get your API key:
Now import the Algorithmia library and create the Algorithmia client:
Now you’re ready to start working with Algorithmia in Swift.
Working with Data Using the Data API
For application developers, Algorithmia’s Data Portal offers three different ways to store your data, all available via the Data API.
This guide will show you how to work with the Hosted Data option on the Algorithmia platform which is available to both algorithm and application developers.
Prerequisites
If you wish to follow along working through the example yourself, create a text file that contains any unstructured text such as a chapter from a public domain book or article. We used a chapter from Burning Daylight, by Jack London which you can copy and paste into a text file. Or copy and paste it from here: Chapter One Burning Daylight, by Jack London. This will be used throughout the guide.
Create a Data Collection
This section will show how to create a data collection which is essentially a folder of data files hosted on Algorithmia for free.
First create a data collection called nlp_directory, note that YOUR_USERNAME
will automatically fill in your Algorithmia username for you:
A Data URI uniquely identifies files and directories and contains a protocol “data://” and path “YOUR_USERNAME/data_collection”. For more information on the Data URI see the Data API Specification.
Instead of your username you can also use ‘.my’ when calling algorithms. For more information about the ‘.my’ pseudonym check out the Hosted Data Guide.
Work with Directory Permissions
When we created the data collection in the previous code snippet, the default setting is ReadAcl:.MY_ALGORITHMS
which is a permission type that allows other users on the platform to interact with your data through the algorithms you create if you decide to contribute to algorithm development. This means users can call your algorithm to perform an operation on your data stored in this collection, otherwise the algorithm you created would only work for you.
Update Permissions to Private
Notice that we changed our data collection to private, which means that only you will be able to read and write to your data collection.
Note that read access that is set to the default DataMyAlgorithms
allows any algorithm you call to have access to your data collection so most often, this is the setting you want when you are calling an algorithm and are an application developer.
For more information on collection-based Access Control Lists (ACLs) and other data collection permissions such as readACL:.PUBLIC
go to the Hosted Data Guide.
Upload Data to your Data Collection
So far you’ve created your data collection and checked and updated directory permissions. Now you’re ready to upload the text file that you created at the beginning of the guide to your data collection using the Data API.
First create a variable that holds the path to your data collection and the text file you will be uploading:
Next upload your local file to the data collection using the .putFile()
method:
This endpoint will replace a file if it already exists. If you wish to avoid replacing a file, check if the file exists before using this endpoint.
You can confirm that the file was created by navigating to Algorithmia’s Hosted Data Source and finding your data collection and file.
You can also upload your data through the UI on Algorithmia’s Hosted Data Source. For instructions on how to do this go to the Hosted Data Guide.
Downloading Data from a Data Collection
Now download the file by adding the else statement to the code we wrote above:
This will get your file as a string, saving it to the variable input
. If we were dealing with binary data and wanted the raw bytes, we’d use getData
; to get the actual file, getFile
.
Now you’ve seen how to upload a local data file, check if a file exists in a data collection, and download the file contents.
For more methods on how to get a file using the Data API from a data collection go to the API Specification.
Call an Algorithm
Finally we are ready to call an algorithm. In this guide we’ll use the natural language processing algorithm called Summarizer. This algorithm results in a string that is the summary of the text content you pass in as the algorithm’s input.
A single algorithm may have different input and output types, or accept multiple types of input, so consult the algorithm’s description for usage examples specific to that algorithm.
This example shows the summary of the text file which we downloaded from our data collection and set as the variable called input
in the previous code sample.
Create the algorithm object and pass in the variable input
into algo.pipe()
under code where we initialized our input variable:
When you pass in strings as input to an algorithm it expects JSON syntax so it would be double quotes rather than single quotes.
This guide used the the first chapter of Jack London’s Burning Daylight and the Summarizer algorithm outputs:
“It was a quiet night in the Shovel. The miners were in from Moseyed Creek and the other diggings to the west, the summer washing had been good, and the men’s pouches were heavy with dust and nuggets. MacDonald grinned and nodded, and opened his mouth to speak, when the front door swung wide and a man appeared in the light.”
If you are interested in learning more about working with unstructured text data check out our guide Introduction to Natural Language Processing.
Limits
Your account can make up to 80 Algorithmia requests at the same time (this limit can be raised if needed).
Algorithm requests have a payload size limit of 10MB for input and 15MB for output. If you need to work with larger amounts of data, you can make use of the Algorithmia Data API.
Conclusion
This guide covered installing the Algorithmia Swift Client, uploading and downloading data to and from a user created data collection, checking if a file exists using the Data API, calling an algorithm, and handling errors.
For more information on the methods available using the Data API using Swift check out the Swift Client Language CocoaDocs and for examples of executing common tasks with Algorithmia go to the Swift Client Docs.
For convenience, here is the whole script available to run: