Skip to content

Commit

Permalink
renamed project from convnet to xlearn
Browse files Browse the repository at this point in the history
  • Loading branch information
decarlof committed Sep 30, 2016
1 parent b4b1879 commit 30ae006
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,4 @@ tmp2/
validate*
workingOn/
#rec_*
.idea
6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

6 changes: 3 additions & 3 deletions xlearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)

from convnet.transform import *
from convnet.utils import *
from xlearn.transform import *
from xlearn.utils import *

try:
import pkg_resources
__version__ = pkg_resources.working_set.require("convnet")[0].version
__version__ = pkg_resources.working_set.require("xlearn")[0].version
except:
pass
2 changes: 1 addition & 1 deletion xlearn/classify.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
from keras.layers.convolutional import Convolution2D, MaxPooling2D
from keras.utils import np_utils

import convnet.utils as utils
import xlearn.utils as utils


__authors__ = "Xiaogang Yang, Francesco De Carlo"
Expand Down
2 changes: 1 addition & 1 deletion xlearn/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
from keras.layers.core import Dense, Reshape, Activation, Flatten
from keras.layers.convolutional import Convolution2D, MaxPooling2D, UpSampling2D

import convnet.utils as utils
import xlearn.utils as utils


__authors__ = "Xiaogang Yang, Francesco De Carlo"
Expand Down

0 comments on commit 30ae006

Please sign in to comment.