Hi,
I am working now on image_test at nupic.research/projects for MNIST classification.
By running experiment:
python experiment.py
I have got the following error:
ERR: Matching Python module for ImageSensor not found. [/home/binh/nupic/nupic.core/src/nupic/engine/RegionImplFactory.cpp line 431]
Could you pls tell me, where can I import the module ImageSensor?
NuPIC is not tuned to image processing today. We moved all the image-related code into another repository called nupic.vision. You can find ImageSensor there:
I have the same problem,it says "RuntimeError: Matching Python module for ImageSensor not found."
Is the code āfrom nupic.vision import ImageSensorā correct?
Feel free to submit PRs or bug reports to nupic.vision. Iād like to get this working again in 2017 as I think it will be a useful sensorimotor test bed.
Iām using the code written by my friend and it works quite well on his computer.The code is for image classification.
The console shows
ānet.addRegion(āsensorā, āpy.ImageSensorā,json.dumps(DEFAULT_IMAGESENSOR_PARAMS))ā
has some problem.How can I fix this?
Iāve tried but it didnāt work.Maybe itās a version problem.The code used to work very well based on a former version 0.1.1. dev0. Iām using the latest version.
I just pulled the latest changes from nupic.vision.
The only changes I needed to do was change āmaxBoostā to āboostStrengthā in run_mnist_experiment.py and remove line 166 sensor.setParameter("explorer",yaml.dump(["Flash"]))
After that it runs for me with the head nupic code from yesterday.