Jump to content

Any coders? Python???


DeathMagicia

Recommended Posts

Posted

Working on a little project with a rasberry pi and playing with Jasper AI software, but running into wall after wall after wall, Currently I can get the program to boot most of the way, then  I hit this dead wall.

 

(please mind me, as I'm still learning python and am just now starting to dabble with these)

 

 File "/home/pi/jasper/client/stt.py", line 42, in get_instance
    instance = cls(**config)
TypeError: __init__() takes exactly 2 arguments (1 given)

 

Curious if anyone knows what is wrong here, which i'm sure someones going to call me an idiot and point out an obvious mistake, but again... im new lol. 

Posted

What parameters are you passing to cls?

Posted

post relevant snippets of code where you use this function and where it fails

Posted

dunno brother, put the whole section where this line is in, maybe we can help better

Posted

pi@raspberrypi:~/jasper $ ./jasper.py
No handlers could be found for logger "cmuclmtk"
*******************************************************
*             JASPER - THE TALKING COMPUTER           *
* (c) 2015 Shubhro Saha, Charlie Marsh & Jan Holthuis *
*******************************************************
ERROR:root:Error occured!
Traceback (most recent call last):
  File "./jasper.py", line 146, in <module>
    app = Jasper()
  File "./jasper.py", line 109, in __init__
    stt_passive_engine_class.get_passive_instance(),
  File "/home/pi/jasper/client/stt.py", line 48, in get_passive_instance
    return cls.get_instance('keyword', phrases)
  File "/home/pi/jasper/client/stt.py", line 42, in get_instance
    instance = cls(**config)
TypeError: __init__() takes exactly 2 arguments (1 given)

 

Posted
2 minutes ago, Runs Off said:

post relevant snippets of code where you use this function and where it fails

 

1 minute ago, Phobias said:

dunno brother, put the whole section where this line is in, maybe we can help better

Yea, post the region of stt.py, around the area where line42 is

Posted
2 minutes ago, DeathMagicia said:


pi@raspberrypi:~/jasper $ ./jasper.py
No handlers could be found for logger "cmuclmtk"
*******************************************************
*             JASPER - THE TALKING COMPUTER           *
* (c) 2015 Shubhro Saha, Charlie Marsh & Jan Holthuis *
*******************************************************
ERROR:root:Error occured!
Traceback (most recent call last):
  File "./jasper.py", line 146, in <module>
    app = Jasper()
  File "./jasper.py", line 109, in __init__
    stt_passive_engine_class.get_passive_instance(),
  File "/home/pi/jasper/client/stt.py", line 48, in get_passive_instance
    return cls.get_instance('keyword', phrases)
  File "/home/pi/jasper/client/stt.py", line 42, in get_instance
    instance = cls(**config)
TypeError: __init__() takes exactly 2 arguments (1 given)

 

like post the actual code lines not the errors brother

Posted
@classmethod
    def get_instance(cls, vocabulary_name, phrases):
        config = cls.get_config()
        if cls.VOCABULARY_TYPE:
            vocabulary = cls.VOCABULARY_TYPE(vocabulary_name,
                                             path=jasperpath.config(
                                                 'vocabularies'))
            if not vocabulary.matches_phrases(phrases):
                vocabulary.compile(phrases)
            config['vocabulary'] = vocabulary
        instance = cls(**config)
        return instance

    @classmethod
    def get_passive_instance(cls):
        phrases = vocabcompiler.get_keyword_phrases()
        return cls.get_instance('keyword', phrases)

      

starting to think i'm seing the issue. As i'm looking through this it's requesting vocab and phrases from "pocketsphinx" when it should be using Wit.ai

Posted

Also this project is 2-4 years old, so probably doesnt have much support

Posted
23 minutes ago, Utc said:

im here for +1

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.