Ошибка пустых клипов в ClipsPy при использовании make_instance

Я новичок в CLIPS и clipsPy. Я пытаюсь создать экземпляр класса CLIPS

Это класс, который я определил и правильно построил в своей среде Python (clipsPy)

       ENTITIES_CLASS = """
(defclass ENTITY-CLASS (is-a INITIAL-OBJECT)
    (slot text (type STRING))
    (slot confidence (type FLOAT))
    (slot type (type SYMBOL))
)
"""
env.build(ENTITIES_CLASS)

Это работает, как ожидалось, но когда я пытаюсь создать экземпляр этого класса:

       new_instance = "(ent0-0 of ENTITY-CLASS (text 'Bruce Springsteen')(confidence 1.0)(type PER))"
env.make_instance( new_instance )

Я получаю эту пустую ошибку:

Я пробовал несколько форм создания строки new_instance, но ни одна из них не работает:

       new_instance = '(ent0-0 of ENTITY-CLASS (text "Bruce Springsteen")(confidence 1.0)(type PER))'
new_instance = "(ent0-0 of ENTITY-CLASS (text 'Bruce Springsteen') (confidence 1.0) (type PER) )"

Где моя синтаксическая ошибка? Я ценю любую помощь

1 ответ

Решение

Проблема с пустой ошибкой может быть связана с тем, как Jupyter перенаправляет ввод-вывод.

На IPython я получаю:

In [1]: import clips                                                                                                                                                                                               

In [2]: env = clips.Environment()                                                                                                                                                                                  

In [3]: ENTITIES_CLASS = """ 
   ...: (defclass ENTITY-CLASS (is-a INITIAL-OBJECT) 
   ...:     (slot text (type STRING)) 
   ...:     (slot confidence (type FLOAT)) 
   ...:     (slot type (type SYMBOL)) 
   ...: ) 
   ...: """ 
   ...: env.build(ENTITIES_CLASS)                                                                                                                                                                                  

In [4]: env.make_instance("(ent0-0 of ENTITY-CLASS (text 'Bruce Springsteen')(confidence 1.0)(type PER))")                                                                                                         

---------------------------------------------------------------------------
CLIPSError                                Traceback (most recent call last)
<ipython-input-4-92b62ecc6bed> in <module>
----> 1 env.make_instance("(ent0-0 of ENTITY-CLASS (text 'Bruce Springsteen')(confidence 1.0)(type PER))")

/usr/local/lib/python3.6/dist-packages/clips/classes.py in make_instance(self, command)
    215         ist = lib.EnvMakeInstance(self._env, command.encode())
    216         if ist == ffi.NULL:
--> 217             raise CLIPSError(self._env)
    218 
    219         return Instance(self._env, ist)

CLIPSError: [INSFUN7] ('Bruce Springsteen') illegal for single-field slot text of instance [ent0-0] found in put-text primary in class ENTITY-CLASS. [PRCCODE4] Execution halted during the actions of message-handler put-text primary in class ENTITY-CLASS

Проблема заключается в том, как вы представляете строку 'Bruce Springstreen'. В CLIPS типы STRING заключаются в двойные кавычки. ".

In [4]: env.make_instance('(ent0-0 of ENTITY-CLASS (text "Bruce Springsteen")(confidence 1.0)(type PER))')                                                                                                         
Out[4]: Instance: [ent0-0] of ENTITY-CLASS (text "Bruce Springsteen") (confidence 1.0) (type PER)
Другие вопросы по тегам