File size: 214 Bytes
966ae59
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
# Copyright (c) XiMing Xing. All rights reserved.
# Author: XiMing Xing
# Description:

from .inception import inception_v3
from .vgg import VGG

__all__ = [
    'inception_v3',
    'VGG'
]