'from Model.AGCRNCell import AGCRNCell ModuleNotFoundError: No module named 'model'

I'm trying to replicate this model from here: https://github.com/Davidham3/ASTGCN/tree/master/model

but when I try to run the model code in my colab

import torch import torch.nn as nn from model.AGCN import AVWGCN

I get a following error: ModuleNotFoundError Traceback (most recent call last) in () 1 import torch 2 import torch.nn as nn ----> 3 from model.AGCN import AVWGCN 4 5

ModuleNotFoundError: No module named 'model'

I have checked all google, StackOverflow answers but can t find any! please help!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source