mboudiaf / pytorch-meta-dataset

A non-official 100% PyTorch implementation of META-DATASET benchmark for few-shot classification
59 stars 9 forks source link

version of tensorflow-gpu being used? #21

Open brando90 opened 1 year ago

brando90 commented 1 year ago

error:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
tensorflow 2.11.0 requires absl-py>=1.0.0, but you have absl-py 0.11.0 which is incompatible.
tensorflow-gpu 2.11.0 requires absl-py>=1.0.0, but you have absl-py 0.11.0 which is incompatible.
datasets 2.6.1 requires tqdm>=4.62.1, but you have tqdm 4.54.1 which is incompatible.
brando90 commented 1 year ago

@mboudiaf do you really need

        'absl-py==0.11.0',

?

lamblin commented 1 year ago

We probably don't need to pin absl-py (or other dependencies) to that specific version, feel free to replace == with >= and try again. Let us know if there are incompatibility issues at run time.