Fqlox
Fqlox
Alright, I tried : ``` import cv2 from fer import FER import os os.environ["SM_FRAMEWORK"] = "tf.keras" detector = FER(mtcnn=True) # or with mtcnn=False for Haar Cascade Classifier image = cv2.imread("justin.png")...
Hi, did you try to **not** run the block `%tensorflow_version 1.x` since the project is now using tensorflow 2.1 ?
> I have the same problem. Does anybody found a solution for that? thanks I found the solution: pip install pytorch-lightning==1.6.1 [here](https://github.com/CompVis/latent-diffusion/issues/49) works for me Worked for me. thought, I...
@standardAI I did install diffuser from source then I had to downgrade due to [an error on instantID](https://github.com/InstantID/InstantID/issues/146#issuecomment-1966075133). When I generate using both reference and instantId arguments, and with only...
> This may be a compatibility issue with the new version 2.0.0 of `pytorch-lightning`. Haven't fully tested it anything myself, but reverting to a previous version of `pytorch-lightning` like version...
> Maybe it's related to [7bfbddb](https://github.com/minimaxir/aitextgen/commit/7bfbddb7169f9546bb3f66145eb7bf4ef3a50e99), a rollback to an earlier PyTorch-lightning around 1.3.1 Tried installing 1.3.1 instead of 1.9.4 and got `ImportError: cannot import name 'get_num_classes' from 'torchmetrics.utilities.data' (/usr/local/lib/python3.9/dist-packages/torchmetrics/utilities/data.py)...
> I manage to resolve the error on the google colab by running this: > > !pip install -qq pytorch-lightning==1.7.0 transformers==4.21.3 aitextgen==0.6.0 > > Please do let me know if...