KittiSeg icon indicating copy to clipboard operation
KittiSeg copied to clipboard

Can this code run on Python 3.5.3 or other Python 3.x version?

Open liangjianfans opened this issue 7 years ago • 8 comments

Dear All,

Has any one tested this code using Python3.5 and gotten success? Thanks.

liangjian

liangjianfans avatar Jun 13 '17 14:06 liangjianfans

No problem,just do it

daixiaogang avatar Jun 14 '17 07:06 daixiaogang

worked for me on 3.5.2

zishanahmed08 avatar Jun 14 '17 08:06 zishanahmed08

working well

ChulhoonJang avatar Jul 21 '17 10:07 ChulhoonJang

Did anyone here encounter https://github.com/MarvinTeichmann/KittiSeg/issues/35? I kept encountering this issue when attempting to use Python 3.x

villanuevab avatar Jul 27 '17 21:07 villanuevab

@villanuevab I have encountered the same problem.Do you have any solution? If you have time, can you give me some advice?I use the windows system, only support Tensorflow with python3.5. Thank you.

weisq2691 avatar Aug 20 '17 09:08 weisq2691

i had the same problem , and i was forked and changed code to support python 3.5 , it's work for me

https://github.com/tylercode362/KittiSeg/tree/hotfix/python3.5_support

2017-08-23 16:41:22,587 INFO (raw) Acc. : 0.93, xentropy: 0.16, weight_loss: 0.38 2017-08-23 16:41:22,587 INFO (smooth) Acc. : 0.90, xentropy: 0.21, weight_loss: 0.38 2017-08-23 16:41:49,080 INFO Step 640/12000: loss = 0.48; lr = 1.00e-05; 0.530 sec (per Batch); 1.9 imgs/sec 2017-08-23 16:41:49,272 INFO (raw) Acc. : 0.97, xentropy: 0.08, weight_loss: 0.38 2017-08-23 16:41:49,272 INFO (smooth) Acc. : 0.91, xentropy: 0.21, weight_loss: 0.38 2017-08-23 16:42:18,988 INFO Step 660/12000: loss = 0.42; lr = 1.00e-05; 0.594 sec (per Batch); 1.7 imgs/sec


after download model_files , need to fix this

File "RUNS/KittiSeg_pretrained/model_files/eval.py", line 131 -for i in xrange(10): +for i in range(10):

tylercode362 avatar Aug 23 '17 08:08 tylercode362

@tylercode362 did you run on windows or linux?

KKayak avatar May 17 '18 15:05 KKayak

linux

tylercode362 avatar Nov 21 '18 22:11 tylercode362