DeathMagicia Posted December 1, 2018 Posted December 1, 2018 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.
Runs Off Posted December 1, 2018 Posted December 1, 2018 post relevant snippets of code where you use this function and where it fails
Phobias Posted December 1, 2018 Posted December 1, 2018 dunno brother, put the whole section where this line is in, maybe we can help better
DeathMagicia Posted December 1, 2018 Author Posted December 1, 2018 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)
London2nyc Posted December 1, 2018 Posted December 1, 2018 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
Phobias Posted December 1, 2018 Posted December 1, 2018 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
Runs Off Posted December 1, 2018 Posted December 1, 2018 he's running the main file from the repo https://github.com/jasperproject/jasper-client/blob/master/jasper.py, which means its not a coding issue on his part. Make sure you installed requirements.txt. Also the github says the project build fails, so it might be broken?
DeathMagicia Posted December 1, 2018 Author Posted December 1, 2018 @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
Runs Off Posted December 1, 2018 Posted December 1, 2018 Also this project is 2-4 years old, so probably doesnt have much support
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now