-
Forgive as I am new to coding, I just don't get how to install or run this at all. I downloaded and unzipped the contents into a file, there is a "setup.py" file but I have no clue how to open it or proceed with it. Thank you for nay help. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Frankly, this the equivalent of sitting down at the cockpit of a jumbo jet and asking where you turn the key and how to honk the horn. If you are serious about this, go spend a 3-6 months learning Python, 3-6 months doing an ML course or two, and if you are a super fast learner, come back here and see if this project has a trained model ready. |
Beta Was this translation helpful? Give feedback.
-
If your goal is to generate images from text then this repo is not able to do so by itself. To run a machine learning model you need two things, the code that trains and runs the model, and the model weights that have been trained on data, usually called a checkpoint file. This repo only contains the code. The author of this repo is still in the process of replicating google's paper which this model is based on, I think he's close and in some aspects even surpassed it, but it requires tons of processing power to get a trained model out and validate if the code is correct. To replicate the results in the paper the model needs to be trained of 400M images, a feat like that would roughly take 6-12 months on a single consumer GPU. In short: It's not ready. Maybe by the end of the year someone will have trained this model on a huge dataset and released it out to the public. |
Beta Was this translation helpful? Give feedback.
-
For this repo, you need to wait for someone to build and release a checkpoint, or start training it yourself, which is something I wouldn't want to do. It might take a while, so as an alternative there are other AI gens that "work", but are basically like going back in time. For example I've used https://github.com/nerdyrodent/VQGAN-CLIP locally on my rig with the COCO checkpoint, it makes images, but the code is getting dusty. |
Beta Was this translation helpful? Give feedback.
If your goal is to generate images from text then this repo is not able to do so by itself. To run a machine learning model you need two things, the code that trains and runs the model, and the model weights that have been trained on data, usually called a checkpoint file. This repo only contains the code.
The author of this repo is still in the process of replicating google's paper which this model is based on, I think he's close and in some aspects even surpassed it, but it requires tons of processing power to get a trained model out and validate if the code is correct. To replicate the results in the paper the model needs to be trained of 400M images, a feat like that would roughly tak…