Skip to content

Commit 54ee39e

Browse files
author
Daniel Nyga
committed
version 1.2.3
1 parent 858c4af commit 54ee39e

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

Diff for: _version/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
VERSION_MAJOR = 1
2222
VERSION_MINOR = 2
23-
VERSION_PATCH = 2
23+
VERSION_PATCH = 3
2424

2525
VERSION_STRING_FULL = '%s.%s.%s' % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
2626
VERSION_STRING_SHORT = '%s.%s' % (VERSION_MAJOR, VERSION_MINOR)

Diff for: python3/pracmln/mlnlearn.py

+11-10
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2525
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2626
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27+
2728
import argparse
2829
import fnmatch
2930
import io
@@ -37,16 +38,16 @@
3738
from dnutils import logs, out, ifnone
3839
from tabulate import tabulate
3940

40-
from . import MLN
41-
from .mln.base import parse_mln
42-
from .mln.database import Database, parse_db
43-
from .mln.learning.common import DiscriminativeLearner
44-
from .mln.methods import LearningMethods
45-
from .mln.util import headline, StopWatch
46-
from .utils import config, locs
47-
from .utils.config import global_config_filename
48-
from .utils.project import MLNProject, PRACMLNConfig
49-
from .utils.widgets import *
41+
from pracmln import MLN
42+
from pracmln.mln.base import parse_mln
43+
from pracmln.mln.database import Database, parse_db
44+
from pracmln.mln.learning.common import DiscriminativeLearner
45+
from pracmln.mln.methods import LearningMethods
46+
from pracmln.mln.util import headline, StopWatch
47+
from pracmln.utils import config, locs
48+
from pracmln.utils.config import global_config_filename
49+
from pracmln.utils.project import MLNProject, PRACMLNConfig
50+
from pracmln.utils.widgets import *
5051
import logging #import used in eval, do not remove
5152

5253

Diff for: python3/pracmln/mlnquery.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@
3535

3636
from dnutils import logs, ifnone, out
3737

38-
from . import ALL
39-
from .utils.project import MLNProject, PRACMLNConfig, mlnpath
40-
from .mln.methods import InferenceMethods
41-
from .utils.widgets import FileEditBar
42-
from .utils import config, locs
43-
from .mln.util import parse_queries, headline, StopWatch
44-
from .utils.config import global_config_filename
45-
from .mln.base import parse_mln, MLN
46-
from .mln.database import parse_db, Database
38+
from pracmln import ALL
39+
from pracmln.utils.project import MLNProject, PRACMLNConfig, mlnpath
40+
from pracmln.mln.methods import InferenceMethods
41+
from pracmln.utils.widgets import FileEditBar
42+
from pracmln.utils import config, locs
43+
from pracmln.mln.util import parse_queries, headline, StopWatch
44+
from pracmln.utils.config import global_config_filename
45+
from pracmln.mln.base import parse_mln, MLN
46+
from pracmln.mln.database import parse_db, Database
4747
from tabulate import tabulate
4848
from cProfile import Profile
4949
import pstats
5050
import io
51-
# import pracmln
51+
5252
import logging #import used in eval, do not remove
5353

5454

0 commit comments

Comments
 (0)