We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from capsule.config import cfg from capsule.utils import load_mnist from capsule.capsNet import CapsNet
import os import tensorflow as tf from tqdm import tqdm
return : ModuleNotFoundError Traceback (most recent call last) /content/capsule/capsNet.py in () 7 import tensorflow as tf 8 ----> 9 from config import cfg 10 from utils import get_batch_data 11 from capsLayer import CapsLayer
ModuleNotFoundError: No module named 'config'
The text was updated successfully, but these errors were encountered:
I suggest : 9 from capsule.config import cfg
Sorry, something went wrong.
No branches or pull requests
from capsule.config import cfg
from capsule.utils import load_mnist
from capsule.capsNet import CapsNet
import os
import tensorflow as tf
from tqdm import tqdm
return :
ModuleNotFoundError Traceback (most recent call last)
/content/capsule/capsNet.py in ()
7 import tensorflow as tf
8
----> 9 from config import cfg
10 from utils import get_batch_data
11 from capsLayer import CapsLayer
ModuleNotFoundError: No module named 'config'
The text was updated successfully, but these errors were encountered: