Skip to content
#

semantic-segmentation

Here are 765 public repositories matching this topic...

gluon-cv
xyl576807077
xyl576807077 commented Mar 25, 2019
import numpy as np
from sklearn.metrics import confusion_matrix

class runningScore(object):
    def __init__(self, n_classes):
        self.n_classes = n_classes
        self.confusion_matrix = np.zeros((n_classes, n_classes))

    def _fast_hist(self, label_true, label_pred, n_class):
        mask = (label_true >= 0) & (label_true < n_class)
        hist = np.bincount(
          
lewfish
lewfish commented Apr 4, 2019

In experiments.rst, in the first diagram, I'm inferring that ovals are static resources and parallelograms are processes, and that dashed lines means optional. But if that's true, then I'm not sure what the meaning of purple vs. blue is, the scenes should be ovals and solid lines. It might be simpler and easier to parse if everything was a blue oval, although the dashed line makes sense. In the

Improve this page

Add a description, image, and links to the semantic-segmentation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the semantic-segmentation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.