Menu

Generative AI Image creation

Generative artificial intelligence is sub branch of artificial intelligence, that could be use in generate the different type of contents (text, image, translation, and many more) you may learn more about the generative AI. Here we will see how we could create photo or images using generative AI.
The process is generating image using text, where a user will give prompt to AI and based on the prompt AI will generate the image.

Generative AI image creator tools

  1. Adobe Firefly
  2. Microsoft Bing Image Creator

Images created by generative AI









Llama-2 vs GPT-4 differences

The world of internet is now focusing of creating different Large Language Models(LLM) to generate the contnet. Llama 2 after Llama by Meta, and GPT-4, GPT-3.5-turbo, GPT-3 by Microsoft or OpenAI are the two mature and best LLM available till today(July 2023). Today in this blog we will what are differences between these two LLMs and which one is best for users and enterprise customers.

S.N. GPT-4 Llama 2
1 GPT support more lanaguages Llama support only 20 languages

git error fatal: cannot create directory because filename too long

A too long file name is an issue while cloing any git repo. We can set a git property longpaths=true to allow the too long file name for git. Following the command and their scope.

  1. For all users

    git config --system core.longpaths true
  2. For current user

    git config --global core.longpaths true
  3. Only for current clone

    git clone -c core.longpaths=true