Skip to content

Commit 8a2b78b

Browse files
authored
Merge pull request #4 from lapix-ufsc/add-nbdev-setup
add nbdev setup
2 parents 5855379 + b37491e commit 8a2b78b

File tree

8 files changed

+207
-0
lines changed

8 files changed

+207
-0
lines changed

.github/workflows/deploy.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Deploy to GitHub Pages
2+
on:
3+
push:
4+
branches: [ "main", "master" ]
5+
workflow_dispatch:
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps: [uses: fastai/workflows/quarto-ghp@master]

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include settings.ini
2+
include LICENSE
3+
include CONTRIBUTING.md
4+
include README.md
5+
recursive-exclude * __pycache__

dl-tutorials/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.quarto/
2+
_docs/

dl-tutorials/_quarto.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
ipynb-filters: [nbdev_filter]
2+
3+
project:
4+
type: website
5+
output-dir: _docs
6+
preview:
7+
port: 3000
8+
browser: false
9+
10+
format:
11+
html:
12+
theme: cosmo
13+
css: styles.css
14+
toc: true
15+
toc-depth: 4
16+
17+
website:
18+
title: "Lapix - Deep learning tutorials"
19+
description: "This repository contains demonstrations done with deep learning computer vision models."
20+
execute:
21+
enabled: false
22+
twitter-card: true
23+
open-graph: true
24+
reader-mode: true
25+
repo-branch: main
26+
repo-url: https://github.com/lapix-ufsc/dl-tutorials/
27+
repo-actions: [issue]
28+
navbar:
29+
background: primary
30+
search: true
31+
right:
32+
- icon: github
33+
href: https://github.com/lapix-ufsc/dl-tutorials/
34+
sidebar:
35+
style: "floating"
36+
37+
metadata-files:
38+
- sidebar.yml
39+
- custom.yml

dl-tutorials/index.ipynb

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Deep Learning tutorials\n",
8+
"\n",
9+
"> This repository contains demonstrations done with deep learning models for computer vision."
10+
]
11+
},
12+
{
13+
"cell_type": "markdown",
14+
"metadata": {},
15+
"source": [
16+
"## Content"
17+
]
18+
},
19+
{
20+
"cell_type": "markdown",
21+
"metadata": {},
22+
"source": [
23+
"This package/repository is not a library, but a set of tutorials using several libraries with models and utilities for computer vision using deep learning. \n",
24+
"\n",
25+
"These tutorials were built in a way that their contents are self-contained, and that they can be used as a basis for other experiments.\n",
26+
"\n",
27+
"The tutorials will cover models and tools for semantic segmentation, object detection, image classification, tracking, augmentation, model evaluation, among other topics."
28+
]
29+
},
30+
{
31+
"cell_type": "markdown",
32+
"metadata": {},
33+
"source": [
34+
"## Datasets"
35+
]
36+
},
37+
{
38+
"cell_type": "markdown",
39+
"metadata": {},
40+
"source": [
41+
"These tutorials are the fruit of different Lapix researchers, who throughout their masters or doctoral degrees developed several computer vision datasets.\n",
42+
"\n",
43+
"Therefore, these tutorials were created from experiments using the following datasets:"
44+
]
45+
},
46+
{
47+
"cell_type": "markdown",
48+
"metadata": {},
49+
"source": [
50+
"1. [CCAgT: Images of Cervical Cells with AgNOR Stain Technique](https://doi.org/10.17632/wg4bpm33hj.2) \n",
51+
"1. [Clouds-1000](https://doi.org/10.17632/4pw8vfsnpx.2)\n",
52+
"1. [UFSC OCPap: Papanicolaou Stained Oral Cytology Dataset (v4)](https://doi.org/10.17632/dr7ydy9xbk.1)"
53+
]
54+
},
55+
{
56+
"cell_type": "markdown",
57+
"metadata": {},
58+
"source": [
59+
"## Authors"
60+
]
61+
},
62+
{
63+
"cell_type": "markdown",
64+
"metadata": {},
65+
"source": [
66+
"| Name | GitHub | Orcid |\n",
67+
"| :--------------------------: | ---------------------------------------- | ------------------------------------------------------------ |\n",
68+
"| Aldo von Wangenheim | [@awangenh](https://github.com/awangenh) | [0000-0003-4532-1417](https://orcid.org/0000-0003-4532-1417) |\n",
69+
"| João Gustavo Atkinson Amorim | [@johnnv1](http://github.com/johnnv1) | [0000-0003-3361-6891](https://orcid.org/0000-0003-3361-6891) |\n",
70+
"| | | |\n"
71+
]
72+
}
73+
],
74+
"metadata": {
75+
"kernelspec": {
76+
"display_name": "Python 3.8.10 ('venv': venv)",
77+
"language": "python",
78+
"name": "python3"
79+
},
80+
"language_info": {
81+
"name": "python",
82+
"version": "3.8.10"
83+
},
84+
"vscode": {
85+
"interpreter": {
86+
"hash": "14fc90b036d17ab8931f0afc7b06851673501038f7e6077c614cdf5f462d6df3"
87+
}
88+
}
89+
},
90+
"nbformat": 4,
91+
"nbformat_minor": 4
92+
}

dl-tutorials/sidebar.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
website:
2+
sidebar:
3+
contents:
4+
- index.ipynb

dl-tutorials/styles.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.cell-output pre {
2+
margin-left: 0.8rem;
3+
margin-top: 0;
4+
background: none;
5+
border-left: 2px solid lightsalmon;
6+
border-top-left-radius: 0;
7+
border-top-right-radius: 0;
8+
}
9+
10+
.cell-output .sourceCode {
11+
background: none;
12+
margin-top: 0;
13+
}
14+
15+
.cell > .sourceCode {
16+
margin-bottom: 0;
17+
}
18+

settings.ini

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[DEFAULT]
2+
host = github
3+
lib_name = Lapix - Deep learning tutorials
4+
description = This repository contains demonstrations done with deep learning computer vision models.
5+
# copyright = Put your copyright info here
6+
keywords = "computer vision" "deep learning" "tutorials" "computer vision tutorial" "deep learning tutorials"
7+
user = lapix-ufsc
8+
author = lapix
9+
repo = dl-tutorials
10+
branch = main
11+
version = 0.0.1-alpha
12+
min_python = 3.7
13+
audience = Developers
14+
language = English
15+
custom_sidebar = False
16+
license = mit
17+
status = 2
18+
nbs_path = ./dl-tutorials/
19+
doc_path = _docs
20+
recursive = False
21+
tst_flags = notest
22+
23+
### Inferred From Other Values ###
24+
doc_host = https://%(user)s.github.io
25+
doc_baseurl = /%(lib_name)s/
26+
git_url = https://github.com/%(user)s/%(repo)s/
27+
lib_path = %(lib_name)s
28+
title = %(lib_name)s
29+
30+
### OPTIONAL ### see https://github.com/fastai/nbdev/blob/master/settings.ini for examples
31+
32+
# requirements =
33+
# dev_requirements =
34+
# console_scripts =
35+
36+
37+
38+

0 commit comments

Comments
 (0)