Saturday, December 28, 2024

Self driving AI cars

 The dangers of AI is real especially the technology incubated and harnessed by Zews through their companies. It will start with zew companies making money and destroying other races who are not their slaves as usual by financial imperialism (take away the bread giving jobs like car driving and transport). My friend in IT told they have fired 5 QA guys and replaced them woth AI automation models for testing.

https://www.ibtimes.co.uk/mom-dead-openai-whistleblower-speaks-out-he-was-too-innocent-this-dirty-corporate-world-1729783


Bharatha needs to work on DharmaAI to guard itself from Zews releasing the AI kraken. Russia, China and Bharatha have to collaborate and build this kalkiAI / DharmaAI


https://x.com/sanjeevs_iitr/status/1851900516390801587

Tesla's Full Self-Driving (FSD) software is currently regulated as a Level 2 Advanced Driver-Assistance System (ADAS) by the Society of Automotive Engineers (SAE). This means that the driver is responsible for the vehicle's actions, even when FSD features are engaged. However, Tesla has stated that FSD is capable of Level 4 autonomy, which would mean that the vehicle can drive itself under certain conditions without human intervention.


Swaayatt Robots (above video) claims to have achieved Level 5 autonomy for their autonomous driving system. This means that their vehicles can operate entirely independently on any road condition without human intervention.

Yep ok nice. Indian raoads need special trained AI model with cows and dogs jumping in. 


Btw flowdrive (a fork of commas open pilot) seems to run fine on android snapdragon phone and cars having ADAS( cruise control and lane assist). Plan to trial it on a rented car with adas suport.

Setup seems straightforward

 https://github.com/flowdriveai/flowpilot/wiki/Installation

 https://youtube.com/shorts/cQgf6EY6TCI?si=79fQAgO3swNptgSv


Depends on cars adas features mainly cruise control and lane assist which is available in top end cars

 Following models are suported without hardware

https://github.com/commaai/openpilot/blob/master/docs/CARS.md

If you need a polished commercial one instead of android openpilots comma ai costs $1000 for their device. https://youtu.be/0aq4Wi2rsOk?si=2546H342cuL2gwUE

https://youtu.be/6ikxBWUAjmI?si=0nakmxc1KqL7nqpI

Comma ai is an L2 at $1200

Visit to kerala kannur calicut

It was a quick day trip from mysuru. Stayed at Sun n tan homestay run by Murali Mohan ( he was electrician in navy ). He was a lovely person played a quick game of chess i won he cried i was distracted by phone.

Beautiful beaches, nice people in lungi flaunting moustache. The sea shores were best. A 2 minute ride on yamaha powered motor boat gave us a sense of seas power.

Visited the kantara museum and st angelo fort built by dutch (it mostly houses prison cells).

i could see mostly muslim women and marriage functions near the place i stayed. Could relate to captain vadakayils blog how hyderali seighed kannur and Tippu converted majority to muslim and murdering many. The muslim women in hijab with wierd rounded long nose made me feel yuck. I hardly saw hindu woman walking around. The muslim woman in hijabs in SUVs were roaming freely, i even saw a teen myuslim girl dashing through the ticket counter pushin a man in lungi and his wife between.

ivesg a similar feel when we walk in uslism reaa in ysurum.

The lungi men were well built. Big moustachoids in lungi were like super marios.

Saturday, May 25, 2024

AI tools for content creators

1. Give lyrics and it will create perfect song for you 
Sample song generated by Suno AI https://youtube.com/shorts/WJ7ngCF6kgs


2. Turn Your 3D Animation Dream into Reality! Discover the easy, code-free AI process in this step-by-step guide - No coding or animation experience needed!
1. Midjourney ➜ [Midjourney](https://www.midjourney.com/) or free tool like imagine.art
2. Runway ➜ [Runway](https://runwayml.com/)
3. Think Diffusion** ➜ [Think Diffusion](https://wl.tools/thinkdiffusion)
4. Online Convert** ➜ [Online Convert](https://www.online-convert.com/)
5. Lalamu** ➜ [Lalamu](https://lalamu.studio/demo/)
6. ClipChamp** ➜ [ClipChamp](https://clipchamp.com/en/)
7. ElevenLabs** ➜ [ElevenLabs](https://wl.tools/elevenlabs)
8. Pixybay** ➜ [Pixybay](https://pixabay.com/music/)
9. Vmake** ➜ [Vmake](https://vmake.ai/)
10. Free Tool for Image Generation:**
    - Playground** ➜ [Playground](https://playgroundai.com/)
    - Clipdrop** ➜ [Clipdrop](https://clipdrop.co/)
    - Stability.ai** ➜ [Stability.ai](https://stability.ai/stable-diffusion)
    - Leonardo** ➜ [Leonardo](https://leonardo.ai/)

This is the video i generated using above technique https://www.youtube.com/watch?v=DFYEwsRQ2Ac

Question is where will traditional content creators go as reality becomes synthetic with AI?  

Monday, February 26, 2024

AI notes

Ollama provides a way to run AI models on your PC with around 16 GB ram. It is slow but it works. Need to try connecting with eGPU as my mac supports Thunderbolt 4. 

 

Ollama AI

https://ollama.com/


ollama run llama2


Uncensored models

ollama run llama2-uncensored

ollama run nous-hermes-llama2

ollama run wizard-vicuna


ollama run codellama. //for java, python, c++ etc


ollama list



http://127.0.0.1:11434/


https://ollamahub.com/  


docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main


ollama webui 

  1. cd /Users/[]/AI/ollama-webui/backend

 2. sh start.sh

  1. http://localhost:8080/


Open chrome with debug port

cd /Applications/Google Chrome.app/Contents/MacOS

./Google\ Chrome --remote-debugging-port=9222



TextGen


Manual installation text generation webui using Conda

https://github.com/oobabooga/text-generation-webui

Recommended if you have some experience with the command-line.


0. Install Conda

https://docs.conda.io/en/latest/miniconda.html

On Linux or WSL, it can be automatically installed with these two commands (source):

curl -sL "https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh" > "Miniconda3.sh"

bash Miniconda3.sh



1. Create a new conda environment

conda create -n textgen python=3.11

conda activate textgen



2. Install Pytorch

System

GPU

Command

Linux/WSL

NVIDIA

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Linux/WSL

CPU only

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu

Linux

AMD

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.6

MacOS + MPS

Any

pip3 install torch torchvision torchaudio

Windows

NVIDIA

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Windows

CPU only

pip3 install torch torchvision torchaudio

The up-to-date commands can be found here: https://pytorch.org/get-started/locally/.

For NVIDIA, you may also need to manually install the CUDA runtime libraries:

conda install -y -c "nvidia/label/cuda-12.1.0" cuda-runtime



3. Install the web UI

git clone https://github.com/oobabooga/text-generation-webui

cd text-generation-webui

pip install -r <requirements file according to table below>


Requirements file to use:

GPU

CPU

requirements file to use

Apple

Intel

requirements_apple_intel.txt



conda activate textgen

cd text-generation-webui

python server.py