Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[master][tests] __init__' file to avoid undefined variables #20701

Merged
merged 2 commits into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Roll back full import
  • Loading branch information
mozga-intel committed Oct 27, 2021
commit 450fc21f005d41792b45449828e9fe614bf9e1f5
20 changes: 20 additions & 0 deletions tests/nightly/model_backwards_compatibility_check/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# coding: utf-8

from .common import *
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
# specific language governing permissions and limitations
# under the License.

from python.mxnet import gluon
from python.mxnet.test_utils import assert_almost_equal
from tests.nightly.model_backwards_compatibility_check.common import *
from .common import *

def test_lenet_gluon_load_params_api():
model_name = 'lenet_gluon_save_params_api'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# specific language governing permissions and limitations
# under the License.

from tests.nightly.model_backwards_compatibility_check.common import *
from .common import *


def train_lenet_gluon_save_params_api():
Expand Down