Skip to content

Commit

Permalink
fix export
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarithm committed Oct 9, 2018
1 parent 0912cdf commit 2ad3aeb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions openpose_plus/export.py → export.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#!/usr/bin/env python3.5
#!/usr/bin/env python3
"""Export pre-trained openpose model for C++/TensorRT."""

import argparse
import os
import sys

import tensorflow as tf
import tensorlayer as tl

from inference.common import measure, rename_tensor
from models import get_model
sys.path.append('.')

from openpose_plus.inference.common import measure, rename_tensor
from openpose_plus.models import get_model

tf.logging.set_verbosity(tf.logging.DEBUG)
tl.logging.set_verbosity(tl.logging.DEBUG)
Expand Down

0 comments on commit 2ad3aeb

Please sign in to comment.