-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·73 lines (71 loc) · 3.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: default
title: "Home"
excerpt: "Resources to get started with Algorithmia"
exclude_from_search: true
redirect_from:
- /guides/sentiment-analysis/
---
<div class="syn-styles-supported">
<section>
<div class="col-md-12">
{% include breadcrumbs.html %}
<h1 class="syn-text-3xl" id="page-title">Getting Started</h1>
<p class="syn-header-2">Welcome to our Developer Center, where you can learn how to deploy models into production
quickly, securely, and cost-effectively to deliver business value from your machine learning
and artifiical intelligence initiatives.</p>
<!-- <p>If you're new to Algorithmia, <a href="https://algorithmia.com/pricing" class="syn-link-no-decoration">learn
more</a> about the right solution for you and your business.</p> -->
</div>
</section>
<section>
<div class="col-md-12">
<h2 class="syn-text-2xl">Integration Support</h2>
<p class="syn-body-1">We've built our platform with flexibility as a top priority, enabling you to operationalize,
manage, and govern your machine learning workflows all within existing processes and using existing tools and
services.</p>
<p>See our <a href="/developers/integrations">Integration Guide</a> to learn how to integrate Algorithmia
with your existing data stores, CI/CD pipelines, monitoring and observability tools, message brokers, source
code management systems, identity providers, and more.</p>
</div>
</section>
<section>
<div class="col-md-12">
<h2 class="syn-text-2xl">Quickstart Guides</h2>
<p class="syn-body-1">Using Algorithmia's APIs or browser user interface (UI), you can turn your machine learning
models or utility functions into production-ready, scalable REST API endpoints in a few lines of code. Get
started creating your first algorithm using Algorithmia's <a
href="{{ site.baseurl }}/algorithm-development/your-first-algo">browser UI</a> or <a
href="{{ site.baseurl }}/api/#create-an-algorithm">API</a>.</p>
<p class="syn-body-1">Learn how to connect algorithms to <a href="{{ site.baseurl }}/data">data sources</a>, where
you can store serialized model files and any other data on which your algorithms rely.</p>
<p class="syn-body-1">For details on language-specific algorithm development and dependency management, check out
our <a href="{{ site.baseurl }}/algorithm-development/languages">Algorithm Development Guides</a>.</p>
<p class="syn-body-1">Check out our <a href="/developers/model-deployment/">Model Deployment Guides</a> to learn
recommended patterns and best practices for using popular machine learning frameworks with Algorithmia.</p>
</div>
</section>
<section>
<!--For larger screens-->
<div class="col-md-5 hidden-sm hidden-xs">
<p class="syn-body-1">Once you deploy your model, see our <a href="{{ site.baseurl }}/getting-started">quickstart
guide for how to call algorithms</a> or see more detailed information for working with our <a
href="{{ site.baseurl }}/clients">language-specific SDKs</a> to integrate Algorithmia into your external
applications.</p>
</div>
<div class="col-md-7">
<pre class="code_snippet">
import Algorithmia
input = "YOUR_NAME"
client = Algorithmia.client("API_KEY")
algo = client.algo("demo/Hello/")
print(algo.pipe(input))
</pre>
</div>
<!--For smaller screens-->
<div class="col-sm-12 hidden-md hidden-lg hidden-xl">
<p class="syn-body-1">Check out our <a href="{{ site.baseurl }}/clients">Client Guides</a> to learn how to call
algorithms in the language of your choice.</p>
</div>
</section>
</div>