GODEL
GODEL copied to clipboard
Trying the GODEL Demo
In trying to run the demo, I'm running into an error I'm not sure how to resolve:
!python examples/dstc9/dstc9_server.py
Traceback (most recent call last):
File "examples/dstc9/dstc9_server.py", line 54, in
I found this project, but I'm not sure it's the right project or how to interconnect them: https://github.com/microsoft/DialogLM
I have the same issue. Looking for a resolution
Replacing DialoGLM
with GODEL
in the import statement got me past this error.
Replacing
DialoGLM
withGODEL
in the import statement got me past this error.
Doesnt work, just says cant find GODEL now.
Replacing
DialoGLM
withGODEL
in the import statement got me past this error.Doesnt work, just says cant find GODEL now.
In general, you should tell python where GODEL
is located, whether by:
- Setting python's working directory to the root folder of GODEL:
At GODEL root directory run:
export PYTHONPATH="`pwd`"
- Or the easier way: just copy all the files at
GODEL\examples\dstc9
to the root directory of GODEL and then run the dstc9_server from there.