You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have seen this issue : #10
but the solution suggested my @13muskanp does not work for me as after changing from
from aster.protos import pipeline_pb2 from aster.builders import model_builder
to this: from protos import pipeline_pb2 from builders import model_builder
It is still throwing an error that no module aster is found in the other files of the different directories like builders, covnets, protos etc
The text was updated successfully, but these errors were encountered:
If you are already inside the aster directory you can remove the aster. from imports.
Also before running the code you need to build the protos. After you have built the pipeline.proto it generates pipeline_pb2.py file.
If you are already inside the aster directory you can remove the aster. from imports. Also before running the code you need to build the protos. After you have built the pipeline.proto it generates pipeline_pb2.py file.
I have seen this issue : #10
but the solution suggested my @13muskanp does not work for me as after changing from
from aster.protos import pipeline_pb2
from aster.builders import model_builder
to this:
from protos import pipeline_pb2
from builders import model_builder
It is still throwing an error that no module aster is found in the other files of the different directories like builders, covnets, protos etc
The text was updated successfully, but these errors were encountered: