Researchers have been working for years on tiny robots that can be injected into the bloodstream. To attack cancer, they inject blot clotting drugs into the cancer cells. The initial results look promising as nano-bot technology improves.
Industry News
LLaMa Code Example and Large Language Model Overviews
In AI, LLM stands for Large Language Model. These are advanced types of machine learning models designed to process and generate human-like text based on vast amounts of text data. LLMs are trained on a variety of language tasks, including text completion, translation, summarization, and even coding. Popular examples of LLMs include OpenAI’s GPT series, Google’s BERT, and Meta’s LLaMA.
Their “large” nature comes from having billions to trillions of parameters (the internal adjustable elements that help the model learn patterns in data), enabling them to handle complex language tasks with high accuracy.
Note about Google. There is a common misconception that BERT is now Gemini. Gemini was previously called Bard.
BERT and Gemini are distinct models in Google’s AI landscape rather than one being a rebranding of the other. BERT (Bidirectional Encoder Representations from Transformers) is an influential language model from Google introduced in 2018, known for its ability to understand the context of words in a sentence through bidirectional training. BERT has been widely applied in natural language processing tasks, especially in Google Search.
Gemini, however, is a newer, multimodal language model series that Google launched in 2023, which powers its updated AI chatbot, formerly known as Bard. Gemini is advanced in handling diverse input formats—text, audio, images, and video—and has been optimized for complex tasks such as logical reasoning, contextual understanding, and multimodal data processing. The Gemini series includes several versions like Gemini Pro and Gemini Ultra (Gemini Advanced), with additional models launched throughout 2024 for various applications and devices. This evolution reflects Google’s broader AI ambitions beyond what BERT was initially designed to achieve.
If you’d like to try a LLM as a developer, here is how to install Facebook’s LLaMa:
Code Example for LLaMa
Install Dependencies:
pip install transformers torch
Then you can run it:
from transformers import LlamaTokenizer, LlamaForCausalLM
import torch
# Load the tokenizer and model
model_name = "meta-llama/LLaMA-7B" # Replace with the model name you're using
tokenizer = LlamaTokenizer.from_pretrained(model_name)
model = LlamaForCausalLM.from_pretrained(model_name, torch_dtype=torch.float16).to("cuda")
# Define the input prompt
input_prompt = "Once upon a time in a futuristic city, there was an AI that could"
inputs = tokenizer(input_prompt, return_tensors="pt").to("cuda")
# Generate text
with torch.no_grad():
output = model.generate(
**inputs,
max_length=50, # Adjust max_length based on desired output length
do_sample=True,
top_k=50,
top_p=0.95,
temperature=0.7
)
# Decode and print the output
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
print(generated_text)
What is the Geifion Super Computer?
Denmark’s supercomputer, named “Gefion,” is a powerful computing system primarily used for scientific research and data-intensive tasks. Managed by the Niels Bohr Institute at the University of Copenhagen, Gefion was named after the Norse goddess, fitting as it symbolizes strength and creation, resonating with its computational power.
Gefion is utilized in various fields, including climate modeling, astrophysics, bioinformatics, and material science. Its high-performance capabilities support complex simulations and analyses that would be unfeasible on standard computers, allowing Danish researchers to contribute to cutting-edge discoveries and innovations.
Geifion is a Norse Mythology name for the goddess of prosperity.
NVIDIA recently announced a partnership, seemingly making Gefion the world’s first “Sovereign AI” powered by the tech giant’s hardware.
Who is Gaelan Brown
Gaelan Brown is one of the world’s leading renewable energy experts and author known for his work in promoting compost-powered heat systems. He is the author of The Compost-Powered Water Heater, a guide on how to extract heat from composting organic matter. His approach leverages the natural thermophilic process of composting to generate heat, which can be used for heating buildings, greenhouses, and water, offering an environmentally friendly and fuel-free energy solution.
Brown has been involved in numerous compost-heat recovery projects around the world, from Vermont to Chile, and has worked with Agrilab Technologies to refine compost heat systems for larger-scale applications, like farms and commercial compost producers. These systems, including the Isobar system, use compost to generate heat efficiently, often providing a significant financial return in energy savings. He also lives in a tiny house and advocates for sustainable living.
Robotaxi Overview
In a typical staged production last night, Elon Musk and Tesla showcased Robotaxi.
The concept is of course great. Taxis and Ubers barely need a driver now, are often undersupplied during events or peak times, and could easily be completed by a computer. Tesla has had self-driving for a while so it’s no surprise they want to compete with Uber and Lyft now.
Musk put on the We, Robot party.
The Cybercab, one of the models, has no steering wheel or pedals. Musk describes it as individualized mass transit. Musk explained that the average cost of mass transport is generally $1 or more per mile vs $0.30 per mile with Tesla’s new vehicles. In the past, he’s hinted that Tesla owners could rent their cars out to become taxis and earn income in the future.
The company expects to launch Robotaxi with Model 3 and Model Y in California and Texas in 2025 with the Cybercab model launching towards the end of 2026.
The car uses inductive charging, which means it has no plug.
Elon Musk and Starlink to Provide Free Internet to Hurricane Helene and Milton Areas
Starlink announced today that in addition to the 10,000+ Starlink units provided to users in the areas impacted by Hurricane Helene, the company will provide free texting in conjunction with T-Mobile.
Already cellular users in Florida can see a “T-Mobile SpaceX” network which will enable free texting and 911 calls.
Thank you SpaceX.
U.S. Justice Department Wants to Break Up Google
The Justice Department just filed a brief to potentially break up Google. The technology giant earns billions of dollars from advertisers but also controls the devices, publishers, search traffic and more. The argument is that they are not breaking the law, but because they have a monopoly, they must do things to make it a fair marketplace.
Swamp the Vote – Elon Musk Trump Rally Speech
“Free speech is the bedrock of democracy. If they don’t know the truth, how can you make an informed vote….President Trump must win to preserve the constitution, to preserve democracy…this is a must-win situation.”
Watch the full speech below. Musk had one request, there are only 2 days left to register to vote in Georgia and Arizona, everyone needs to register and refer others to vote via a site SwampTheVote.com.