merve HF staff commited on
Commit
ab7daf8
1 Parent(s): ee2b5b7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -14,12 +14,12 @@ widget:
14
  example_title: Two Cats Chilling
15
  license: cc0.0
16
  ---
 
17
  Full credits go to [François Chollet](https://twitter.com/fchollet).
18
 
19
  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```)
20
 
21
  ## Background Information
22
- ## Keras semantic segmentation models on the 🤗Hub! 🐶 🐕 🐩
23
 
24
  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.
25
  Semantic segmentation models classify pixels, meaning, they assign a class (can be cat or dog) to each pixel. The output of a model looks like following.
 
14
  example_title: Two Cats Chilling
15
  license: cc0.0
16
  ---
17
+ ## Keras semantic segmentation models on the 🤗Hub! 🐶 🐕 🐩
18
  Full credits go to [François Chollet](https://twitter.com/fchollet).
19
 
20
  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```)
21
 
22
  ## Background Information
 
23
 
24
  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.
25
  Semantic segmentation models classify pixels, meaning, they assign a class (can be cat or dog) to each pixel. The output of a model looks like following.