-
I have 2 error:
1.Error in loading augmentation, can't import imgaug.Please make sure it is installed.
When I run command in cmd (Windows10):
python -m keras_segmentation train \
--checkpoints…
-
Hello I have imported and created unet using below code : -
model = Unet(input_shape=(128,128,3),classes=256)
but when i run it it gives me error
AttributeError: module 'keras.utils' has no attrib…
-
When trying to train the demo file, I got this error.
```
(napari-gpu-py39) xxx@hpcg01:~$ napari
2024-03-12 13:35:31.656562: I tensorflow/core/util/port.cc:113] oneDNN custom operations are on. You…
-
import segmentation_models as sm
from segmentation_models.metrics import iou_score
from segmentation_models import Unet
import tensorflow as tf
tf.keras.backend.set_image_data_format('channels_l…
-
I am working on adapting the data loader so that instead of folders a list of file names can be accepted as input. After this, I am trying to run:
```
from keras_segmentation.models.unet import un…
-
Hi, I am uisng a very similar code to the helping documents for doing a sample custom augmentation in keras_segmentation
```
from keras_segmentation.models.unet import vgg_unet
from imgaug import…
-
To implement issue #20, I changed the `predict_multiple` function in the predict.py file. However, the changes are not being applied as the code is taking the modules from the original path.
```
#…
-
Hi, whether adjust UNET structure for 4 depth, instead of 3 depth, and training show an error, for weight names,
ValueError Traceback (most recent call last)
in ()
16 start = time.time()
17 # St…
-
The figure below shows that the value of a decoder neuron is based on 5 other values:
![image](https://user-images.githubusercontent.com/9789042/182028198-ae7494db-5d7c-4d13-a6d7-c72487e951da.png)
…
-
I followed the tutorial and typed the following code.
```python
from keras_segmentation.models.unet import vgg_unet
model = vgg_unet(n_classes=51, input_height=416, input_width=608)
model.train(…