Ignore:
Timestamp:
Aug 7, 2019, 10:07:51 PM (5 years ago)
Author:
Murray Heymann <heymann.murray@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
092e6882fed83e361d79576bc0aa7dc34ac19ad2
Parents:
86420e9c548fd4f1645ed4114c5f79fc3488a8a6
Message:
Implement C prediction function
File:
1 edited

Legend:

Unmodified
Added
Removed
  • machine_learning/ml_python/common/lookuptable.py

    r86420e r0696a3  
    9999def init_table_on_system():
    100100    """
    101     check whether the various files exist, and create if necessary. 
     101    check whether the various files exist, and create if necessary.
    102102    """
    103103    # check for and download help files if necessary
     
    114114
    115115    if not os.path.isfile(VECTORS_NPY) or not os.path.isfile(HELPFILE_NPY):
    116         vectors, file_list = create_table(dictionary=dictionary,
    117                                           attempt_cached=False)
     116        create_table(dictionary=dictionary,
     117                     attempt_cached=False)
    118118
    119119def is_lookup_initialised():
Note: See TracChangeset for help on using the changeset viewer.