Skip to content

Instantly share code, notes, and snippets.

@hkristen
hkristen / 102a_coco_retinanet.ipynb
Created December 11, 2018 14:12
Trying to implement Retinanet with fastai
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hkristen
hkristen / lesson1-imageclef2013_plant_leaf_types_natural_custom_head.ipynb
Last active November 22, 2018 11:05
Transfer Learning with pretrained fastai model -> custom head
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# This webapp is based on Healthy or Not (https://github.com/nikhilno1/healthy-or-not) -> Thanks!
from starlette.applications import Starlette
from starlette.responses import JSONResponse, HTMLResponse, RedirectResponse
from fastai import *
from fastai.vision import *
import torch
from io import BytesIO
import uvicorn
import aiohttp
@hkristen
hkristen / lesson1-imageclef2013_plant_leaf_types.ipynb
Last active November 5, 2018 13:40
fastai_v1: Imageclef2013 plant leaf types
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.