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
We primarily develop against Python 3.7, but Colab uses 3.6.9, which handles circular imports a little differently.
This currently causes problem with our jiant.tasks imports. We run into the following issue with 3.6.9 (as one example)
jiant.tasks
from .retrieval import *
jiant.retrieval
from jiant.tasks.lib.glue_diagnostics import GlueDiagnosticsTask
from jiant.tasks.lib.mnli import MnliTask
jiant.tasks.lib.glue_diagnostics
import jiant.tasks.lib.mnli as mnli
This causes Python 3.6.9 to fail to import tasks.
I am pushing a temporary fix to convert all derivative tasks to do a relative import (#150)
jiant.tasks.lib.mnli_mismatched
jiant.tasks.lib.superglue_axg
jiant.tasks.lib.superglue_axb
while we pursue a longer term solution.
The text was updated successfully, but these errors were encountered:
Colab has apparently updated to 3.7, so moving forward this should no longer be an issue.
Sorry, something went wrong.
No branches or pull requests
We primarily develop against Python 3.7, but Colab uses 3.6.9, which handles circular imports a little differently.
This currently causes problem with our
jiant.tasks
imports. We run into the following issue with 3.6.9 (as one example)jiant.tasks
:from .retrieval import *
jiant.retrieval
:from jiant.tasks.lib.glue_diagnostics import GlueDiagnosticsTask
from jiant.tasks.lib.mnli import MnliTask
jiant.tasks.lib.glue_diagnostics
:import jiant.tasks.lib.mnli as mnli
This causes Python 3.6.9 to fail to import tasks.
I am pushing a temporary fix to convert all derivative tasks to do a relative import (#150)
jiant.tasks.lib.glue_diagnostics
jiant.tasks.lib.mnli_mismatched
jiant.tasks.lib.superglue_axg
jiant.tasks.lib.superglue_axb
while we pursue a longer term solution.
The text was updated successfully, but these errors were encountered: