image-segmentation
Here are 353 public repositories matching this topic...
In file binary segmentation (camvid).ipynb, block 5, there is:
# Lets look at data we have
dataset = Dataset(x_train_dir, y_train_dir, classes=['car', 'pedestrian'])
image, mask = dataset[5] # get some sample
visualize(
image=image,
cars_mask=mask[..., 0].squeeze(),
sky_mask=mask[..., 1].squeeze(),
background_mask=mask[..., 2].squeeze(),
)
here, sky_mask
Description
In some rare cases, for example, when you need to finetune a large model on a small dataset the majoring part of training loop is waiting for saving model checkpoints to a hard drive.
Proposal
Would be logically to add a CheckpointCallback with parameter save_n_best=0 to a configuration and do not store best checkpoints and instead use the latest state of the model.
-
Updated
Jun 12, 2020 - Python
-
Updated
May 5, 2020 - Python
-
Updated
Mar 3, 2020 - Python
-
Updated
May 28, 2020 - Python
-
Updated
Jan 30, 2020 - Python
-
Updated
Jun 12, 2020 - Python
-
Updated
Dec 6, 2019 - Python
-
Updated
Jul 13, 2019 - Python
Keras-rcnn was written to be compatible with a number of third-party frameworks and services like Apple’s Core ML framework that enables developers to embed Keras models into their iOS applications. We should document how an Apple developer can create, train, and export their model to their Core ML-compatible iOS application.
如果设置
cfg.NUM_TRAINERS = 4
cfg.TRAINER_ID = 0,1,2,3
if self.shuffle and cfg.NUM_TRAINERS > 1: np.random.RandomState(self.shuffle_seed).shuffle(self.all_lines) num_lines = len(self.all_lines) // cfg.NUM_TRAINERS self.lines = self.all_lines[num_lines * cfg.TRAINER_ID: num_lines * (cfg.TRAINER_ID + 1)] self.shuffle_seed += 1
上面代码中的self.
-
Updated
Sep 27, 2018 - Python
-
Updated
May 10, 2020 - Python
-
Updated
Jun 1, 2020 - Python
-
Updated
Aug 8, 2019 - Python
during CI on my hiwenet, I discovered a ton of deprecation warnings from scipy : https://travis-ci.org/github/raamana/hiwenet/jobs/658810855
mostly asking medpy to move from scipy to numpy for functions such as sum, absolute, sqrt, square etc .. see below for a sample, and the above link for a full list.. If you can, can you try fix them? thanks.
/hom-
Updated
Apr 10, 2020 - Python
-
Updated
Sep 14, 2017 - Python
-
Updated
Oct 2, 2019 - Python
-
Updated
Nov 12, 2019 - Python
-
Updated
May 20, 2020 - Python
-
Updated
Oct 8, 2019 - Python
-
Updated
May 22, 2020 - Python
-
Updated
Aug 26, 2019 - Python
-
Updated
Feb 25, 2020 - Python
-
Updated
Jun 9, 2018 - Python
-
Updated
Dec 8, 2019 - Python
-
Updated
Jan 28, 2020 - Python
Improve this page
Add a description, image, and links to the image-segmentation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the image-segmentation topic, visit your repo's landing page and select "manage topics."