-
Notifications
You must be signed in to change notification settings - Fork 0
/
apidocs.njk
74 lines (71 loc) · 4.28 KB
/
apidocs.njk
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
{% extends "_includes/app.njk" %}
{% block title %}Convolute{% endblock %}
{% block content %}
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none xl:order-last" tabindex="0">
<!-- Start main area-->
<!-- Background color split screen for large screens -->
<div class="relative min-h-screen flex flex-col">
<!-- Navbar -->
<!-- 3 column wrapper -->
<div class="flex-grow w-full max-w-7xl mx-auto xl:px-8 lg:flex">
<!-- Left sidebar & main wrapper -->
<div class="grid grid-cols-8 gap-4 w-full">
<div class="col-span-2 border-r border-gray-200 overflow-y-auto">
<div class="h-full pl-4 pr-6 py-6 sm:pl-6 lg:pl-8 xl:pl-0">
<!-- Start left column area -->
<div class="h-full relative">
<div class="absolute inset-0">
<div class="jss523">
<a class="h-4 flex items-center mb-4" href="/ion">API Docs</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Dataset</div>
<a class="h-4 flex items-center mb-4" href="/taset">Create Dataset</a>
<a class="h-4 flex items-center mb-4" href="/taset-from-project">Create Dataset From Project</a>
<a class="h-4 flex items-center mb-4" href="/s">Append Images</a>
<a class="h-4 flex items-center mb-4" href="/et-info">Get Dataset Info</a>
<a class="h-4 flex items-center mb-4" href="/sets">List Datasets</a>
<a class="h-4 flex items-center mb-4" href="/taset">Delete Dataset</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Dataset Items</div>
<a class="h-4 flex items-center mb-4" href="/et-item-info">Get Dataset Item Info</a>
<a class="h-4 flex items-center mb-4" href="/et-items-from-dataset">Get Dataset Items</a>
<a class="h-4 flex items-center mb-4" href="/taset-item">Delete Dataset Item</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Slice</div>
<a class="h-4 flex items-center mb-4" href="/ice">Create Slice</a>
<a class="h-4 flex items-center mb-4" href="/-info">Get Slice Info</a>
<a class="h-4 flex items-center mb-4" href="/ice">Delete Slice</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Ground Truth</div>
<a class="h-4 flex items-center mb-4" href="/d-truth">Add Ground Truth</a>
<a class="h-4 flex items-center mb-4" href="/sks">Ingest Tasks</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Model Outputs</div>
<a class="h-4 flex items-center mb-4" href="/model">Add Your Model</a>
<a class="h-4 flex items-center mb-4" href="/del-run">Create Model Run</a>
<a class="h-4 flex items-center mb-4" href="/del-outputs">Add Model Prediction</a>
<a class="h-4 flex items-center mb-4" href="/-run-info">Get Model Run Info</a>
<a class="h-4 flex items-center mb-4" href="/del-run">Commit Model Run</a>
<a class="h-4 flex items-center mb-4" href="/-predictions">Get Model Predictions</a>
<a class="h-4 flex items-center mb-4" href="/del-run">Delete Model Run</a>
<div class="font-mono uppercase text-xs text-gray-500 mb-4 mt-12">Explore Your Data</div>
<a class="h-4 flex items-center mb-4" href="/">Query Bar</a>
</div>
</div>
</div>
<!-- End left column area -->
</div>
</div>
<div class="col-span-6 bg-white lg:min-w-0 lg:flex-1">
<div class="h-full py-6 px-4 sm:px-6 lg:px-8">
<!-- Start main area-->
<div class="relative h-full" style="min-height: 36rem;">
<div class="absolute inset-0 border-4 border-gray-200 border-dashed rounded-lg">
</div>
</div>
<!-- End main area -->
</div>
</div>
</div>
</div>
</div>
<!-- End main area -->
</main>
{% endblock %}