merve HF staff commited on
Commit
505c5ba
·
1 Parent(s): 9a60e06

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -12,8 +12,12 @@ widget:
12
  example_title: Cat in a Crate
13
  - src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/cat-3.jpg
14
  example_title: Two Cats Chilling
15
- license: apache-2.0
16
  ---
 
 
 
 
17
  ## Keras semantic segmentation models on the 🤗Hub! 🐶 🐕 🐩
18
 
19
  Image classification task tells us about a class assigned to an image, and object detection task creates a boundary box on an object in an image. But what if we want to know about the shape of the image? Segmentation models helps us segment images and reveal their shapes. It has many variants, including, panoptic segmentation, instance segmentation and semantic segmentation.This post is on hosting your Keras semantic segmentation models on Hub.
 
12
  example_title: Cat in a Crate
13
  - src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/cat-3.jpg
14
  example_title: Two Cats Chilling
15
+ license: cc0.0
16
  ---
17
+ Full credits go to [François Chollet](https://twitter.com/fchollet)
18
+ This repository contains the model from [this notebook on segmenting pets using U-net-like architecture](https://keras.io/examples/vision/oxford_pets_image_segmentation/). We've changed the inference part to enable segmentation widget on the Hub. (see ```pipeline.py```)
19
+
20
+ ## Background Information
21
  ## Keras semantic segmentation models on the 🤗Hub! 🐶 🐕 🐩
22
 
23
  Image classification task tells us about a class assigned to an image, and object detection task creates a boundary box on an object in an image. But what if we want to know about the shape of the image? Segmentation models helps us segment images and reveal their shapes. It has many variants, including, panoptic segmentation, instance segmentation and semantic segmentation.This post is on hosting your Keras semantic segmentation models on Hub.