Skip to content
Snippets Groups Projects
Commit f8118c0c authored by thomas.blanc.2@etu.univ-amu.fr's avatar thomas.blanc.2@etu.univ-amu.fr
Browse files

Added doc & about page

parent b8a8c8b6
No related branches found
No related tags found
No related merge requests found
public/mozen_full.png

26.4 KiB

const serverurl = 'http://localhost:8181/api/'
// const serverurl = '/api/'
// const serverurl = 'https://mozen.gltronic.ovh/api/'
// const serverurl = 'http://localhost:8181/api/'
const serverurl = 'api/'
export const api = {
// PUBLIC
async search (name, tags, param, sort, size, page) {
......
<template>
<div class="about container">
<h1>About page</h1>
<div class="box">
<h1 class="title">About</h1>
<img src="mozen_full.png" alt="Mozen">
<br>
<br>
<p>Mozen is open library for machine learning models</p>
<p>
Source code available here:
<a href="https://gitlab.lis-lab.fr/thomas.blanc/ter-modelzoo-frontend">Frontend</a> |
<a href="https://gitlab.lis-lab.fr/thomas.blanc/ter-modelzoo-backend">Backend</a> |
<a href="">Python library</a>
</p>
<p>2020</p>
</div>
</div>
</template>
<style scoped>
.about {
margin-top: 20px;
text-align: center;
}
</style>
<template>
<div class="docs container">
<h1>Documentation page</h1>
<div class="box">
<h1 class="title">Documentation page for Mozen Python lib</h1>
<p>The Mozen Python lib is a companion library for Mozen</p>
<hr>
<h2 class="title is-5">Install</h2>
<div class="content">
<blockquote>pip install mozen_zoo</blockquote>
</div>
<h2 class="title is-5">Usage</h2>
<p></p>
<div class="content">
<blockquote>import mozen_zoo</blockquote>
<blockquote>mozen_zoo.load(model id, r|w)</blockquote>
</div>
</div>
</div>
</template>
<style scoped>
.docs {
margin-top: 20px;
}
</style>
......@@ -12,6 +12,10 @@
<b-taglist>
<b-tag v-for="tag in model.tags" v-bind:key="tag.name" type="is-info">{{tag.name}}</b-tag>
</b-taglist>
<hr>
<div class="content">
<blockquote>mozen_zoo.load({{model.id}}, r)</blockquote>
</div>
</div>
<div class="column infoColumn">
<div v-if="isAuthor">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment