forked from algorithmiaio/dev-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·79 lines (73 loc) · 3.71 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
74
75
76
77
78
79
---
layout: default
title: "Home"
excerpt: "Resources to get started with Algorithmia"
exclude_from_search: true
redirect_from:
- /guides/sentiment-analysis/
---
<div class="section">
<div class="col-md-12">
{% include breadcrumbs.html %}
<h1 id="page-title">{{ page.title }}</h1>
<p class="lead" id="welcome_title">Welcome to the Algorithmia Developer Center.</p>
<p class="lead">The Algorithmia platform allows you to deploy your machine and deep learning models at scale with our <a href="https://algorithmia.com/serverless-ai-layer">Serverless AI Layer</a>. For those wanting to deploy, iterate, and scale their models on their own stack or our managed cloud, we have an <a href="https://algorithmia.com/enterprise">Enterprise</a> offering available. And if you need a pre-trained model or utility function for your project, check out the over {{ site.data.stats.marketplace.total_num_algorithms }} algorithms and microservices that have been deployed on Algorithmia's <a href="https://algorithmia.com/algorithms">AI Marketplace</a>.
</p>
<p class="lead">Below you'll find everything you need to get started:</p>
</div>
</div>
<div class="row mb-64">
<!-- <div class="col-sm-12 hidden-md hidden-lg hidden-xl"><a href="{{ site.baseurl }}/model-deployment" class="btn btn-primary btn-raised hidden-xs hidden-sm">Deploy Models</a></div> -->
<div class="col-md-5">
<img src="{{ site.cdnurl }}{{ site.baseurl }}/images/face_detection_desc.jpg" alt="Sample Apps" class="img-fill">
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-7">
<p class="lead">Deploy your machine and deep learning models and leave the devops to us:</p>
<a href="{{ site.baseurl }}/model-deployment" class="btn btn-primary btn-raised">Deploy Models</a>
</div>
</div>
<div class="row mb-64">
<!--For larger screens-->
<div class="col-md-5 hidden-sm hidden-xs">
<p class="lead">Learn how to call algorithms in the language of your choice via our API's:</p>
<a href="{{ site.baseurl }}/clients" class="btn btn-primary btn-raised">Client Guides</a>
</div>
<div class="col-md-7">
<pre class="code_snippet">
import Algorithmia
input = "YOUR_USERNAME"
client = Algorithmia.client("YOUR_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="lead">Learn how to call algorithms in the language of your choice via our API's:</p>
<a href="{{ site.baseurl }}/clients" class="btn btn-primary btn-raised">Client Guides</a>
</div>
</div>
<div class="row mb-64">
<div class="col-md-5">
<img src="{{ site.cdnurl }}{{ site.baseurl }}/images/sample_apps.jpg" alt="Contribute" class="img-fill">
<img src="{{ site.cdnurl }}{{ site.baseurl }}/images/icons/hexicon_box.svg" alt="icon" class="hexicon">
</div>
<div class="col-md-7">
<p class="lead">Contribute to the marketplace by adding your own algorithms:</p>
<a href="{{ site.baseurl }}/algorithm-development" class="btn btn-primary btn-raised">Create Algorithms</a>
</div>
</div>
<div class="row mb-64">
<div class="col-md-5">
<p class="lead hidden-xs hidden-sm">Connect to Dropbox, Amazon S3, or Algorithmia's Hosted Data:</p>
<a href="{{ site.baseurl }}/data" class="btn btn-primary btn-raised hidden-xs hidden-sm">Data Source Guides</a>
</div>
<div class="col-md-7">
<img src="{{ site.cdnurl }}{{ site.baseurl }}/images/test_smallest_data_icons.jpg" alt="Sample Apps" class="img-fill">
</div>
<div class="col-sm-12 hidden-md hidden-lg hidden-xl">
<p class="lead">Connect to your Data</p>
<a href="{{ site.baseurl }}/data" class="btn btn-primary btn-raised">Data Source Guides</a>
</div>
</div>