Javier Ródenas

Results 10 comments of Javier Ródenas

Hi @yuan3ee, You need to do some changes in some files, check this issue https://github.com/jfzhang95/pytorch-deeplab-xception/issues/117#issuecomment-530279794 Hope it helps. Javier

What I did so far: ``` from sklearn.utils import class_weight class_weights = class_weight.compute_class_weight('balanced', np.unique(target_values), target_values.numpy()) class_weights = torch.tensor(class_weights, dtype=torch.float) train_loss_fn = nn.CrossEntropyLoss(weight=class_weights).cuda() ``` See that I am changing the loss...

@Anwarvic first of all, thanks for your answer. Answering your questions: - [x] As **outpath** I have _./SpeakerRecognition/Speaker-Recognition/Merged_Arabic_Corpus_of_Isolated_Words/_ and as **sample_rate** I have **44100** (default value). - [x] On the...

Thanks for replying so fast. I will check the object name again and give some feedback. Interesting this symmetry issue, I will be careful. In my case I don't want...

The object name matchs exactly with the object in the configuration. I didn't explain myself properly. The target beliefmaps show a white point and the output beliefmaps generated are completly...

Find below all the files generated from one example: **001589.png** ![001589](https://user-images.githubusercontent.com/50680821/126758082-9fe4b8c0-0d3c-4960-aded-ca944ad61f52.png) **001589 cs** ![001589 cs](https://user-images.githubusercontent.com/50680821/126757910-6f6f783c-c638-4045-bb5b-62440f7472ed.png) **001589 depth 16** ![001589 depth 16](https://user-images.githubusercontent.com/50680821/126757911-753be51f-4c4b-43d7-9f8d-b0db724603bc.png) **001589 depth cm 8** ![001589 depth cm 8](https://user-images.githubusercontent.com/50680821/126757913-51dec6ba-6121-4c1e-9846-eab023f30d28.png) **001589...

Thanks for your feedback. Let me explain a little bit my confusion. First of all, I am using a self-generated dataset using NDDS. **Object settings:** ``` { "exported_object_classes": [ "TESTEE"...

I am using the 2080 RTX Ti (12 GB). On the other hand, I am using this data currently (some examples): ![009060](https://user-images.githubusercontent.com/50680821/143407473-6f5080cd-6186-4e2e-9942-c02e15527eab.png) ![009062](https://user-images.githubusercontent.com/50680821/143407513-1f823f05-3ce3-42b3-abd1-bf6cc804e95e.png) My experience with this environment is that...

I was testing different parameters with same type of data: Green: learning_rate 0.0001 and batch_size 16 Blue: learning_rate 0.001 and batch_size 8 **TOTAL TRAIN LOSS** ![image](https://user-images.githubusercontent.com/50680821/143582896-9d12dc6f-68b1-4091-9c2a-749f207e3f29.png) **AFFINITY TRAIN LOSS** ![image](https://user-images.githubusercontent.com/50680821/143583852-564bb4fa-b362-4048-9164-c615b4752288.png)...

I can try with non symetrical object. Another possible issue here could be the color. I comment that because in another github issue I saw a guy who was playing...