ArashHosseini / 3d-pose-baseline

A simple baseline for 3d human pose estimation in tensorflow. Presented at ICCV 17.
MIT License
301 stars 71 forks source link

doesn't work with tensorflow 2.x #12

Open lgwds opened 4 years ago

lgwds commented 4 years ago

is this code still maintained or used by anyone? I would be keen to contribute if necessary.

there is no support for tensorflow 2.x. please let me know if anyone is working on that

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

might just do the trick

benjaminabruzzo commented 3 years ago
conda create -n tf
conda activate tf
conda install -c conda-forge tensorflow=1.14 cdflib matplotlib -y
conda install h5py -y

This has been my approach so far. Trying to get the Pre-trained model to work.. no success yet, but it does resolve the TF2.X

:-P