Skip to content

Commit 4d505e0

Browse files
committed
Add working Gluon Xception-65 model. Some cleanup still needed.
1 parent 0c87419 commit 4d505e0

File tree

3 files changed

+440
-1
lines changed

3 files changed

+440
-1
lines changed

convert/convert_from_mxnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import mxnet as mx
66
import gluoncv
77
import torch
8-
from models.model_factory import create_model
8+
from timm import create_model
99

1010
parser = argparse.ArgumentParser(description='Convert from MXNet')
1111
parser.add_argument('--model', default='all', type=str, metavar='MODEL',

timm/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from .gen_efficientnet import *
1111
from .inception_v3 import *
1212
from .gluon_resnet import *
13+
from .gluon_xception import *
1314

1415
from .registry import *
1516
from .factory import create_model

0 commit comments

Comments
 (0)