提交 3790f33f 编写于 作者: littletomatodonkey's avatar littletomatodonkey

fix python path

上级 0eba7166
...@@ -17,6 +17,11 @@ from __future__ import division ...@@ -17,6 +17,11 @@ from __future__ import division
from __future__ import print_function from __future__ import print_function
import os import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
import argparse import argparse
import paddle.fluid as fluid import paddle.fluid as fluid
......
export PYTHONPATH=$PWD:$PYTHONPATH
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
--selected_gpus="0" \ --selected_gpus="0" \
tools/eval.py \ tools/eval.py \
......
...@@ -17,6 +17,11 @@ from __future__ import division ...@@ -17,6 +17,11 @@ from __future__ import division
from __future__ import print_function from __future__ import print_function
import os import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
import argparse import argparse
import paddle.fluid as fluid import paddle.fluid as fluid
......
...@@ -12,6 +12,12 @@ ...@@ -12,6 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
import argparse import argparse
from ppcls.modeling import architectures from ppcls.modeling import architectures
......
...@@ -14,6 +14,11 @@ ...@@ -14,6 +14,11 @@
import argparse import argparse
import os import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
from ppcls.modeling import architectures from ppcls.modeling import architectures
import paddle.fluid as fluid import paddle.fluid as fluid
......
...@@ -13,13 +13,17 @@ ...@@ -13,13 +13,17 @@
# limitations under the License. # limitations under the License.
import os import os
import utils import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../../')))
import argparse import argparse
import numpy as np import numpy as np
import paddle.fluid as fluid import paddle.fluid as fluid
from ppcls.modeling import architectures from ppcls.modeling import architectures
import utils
def parse_args(): def parse_args():
......
#!/usr/bin/env bash #!/usr/bin/env bash
export PYTHONPATH=$PWD:$PYTHONPATH
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
--selected_gpus="0,1,2,3" \ --selected_gpus="0,1,2,3" \
tools/train.py \ tools/train.py \
......
...@@ -18,6 +18,11 @@ from __future__ import print_function ...@@ -18,6 +18,11 @@ from __future__ import print_function
import argparse import argparse
import os import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
from sys import version_info from sys import version_info
import paddle.fluid as fluid import paddle.fluid as fluid
......
...@@ -18,6 +18,11 @@ from __future__ import print_function ...@@ -18,6 +18,11 @@ from __future__ import print_function
import argparse import argparse
import os import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../')))
from sys import version_info from sys import version_info
import paddle.fluid as fluid import paddle.fluid as fluid
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册