और पोस्ट — पेज 2

कुल 34 पोस्ट
A
aijobz
@aijobz
1.9K

We're Hiring: Senior Al Engineer / RAG Engineer Are you passionate about building next-generation Al systems? We're looking for experienced professionals with expertise in Python, FastAPI, RAG, GraphRAG LangGraph, LiteLLM, Knowledge Graphs, Vector Databases, and LLM integrations Experience: 5+ Years Skills: Python, FastAPI, RAG, GraphRAG, LangGraph, Neo4j/NebulaGraph, Weaviate, OpenAl, AWS Bedrock, Kubernetes Work on cutting-edge Al, agentic workflows, and enterprise-scale knowledge systems. If you're interested or know someone who would be a great fit, please share your resume [email protected] or tag them in the comments

P
pythonfreebootcamp
@pythonfreebootcamp
3K

If you work with Python, remember a simple rule: do not modify a list while iterating over it. 🐍🛑 This can lead to unexpected results because the iterator does not track structural changes.

Here is an example that looks logical but works incorrectly: 🤔

items = [1, 2, 2, 3, 4] for item in items:     if item == 2:         items.remove(item) print(items) # Output: [1, 2, 3, 4]

It seems that all 2s should disappear, but one remains. ❓ Why?

After removing an element, the list shifts, but the loop moves on — as a result, some values are simply skipped. 🔄🚫

How to do it correctly — iterate over a copy: ✅

for item in items[:]:     if item == 2:           items.remove(item) print(items) # Output: [1, 3, 4]

Even better — use list comprehension: 🚀

items = [x for x in items if x != 2]

Conclusion: 🏁 do not modify a collection during iteration. This can lead to skipped elements, duplication, or even errors during execution. 🛠️🚧

#Python #Coding #Programming #Debugging #TechTips #PythonTips

Q
QA Jobs | Работа для тестировщика
@qa_work
4.1K

Готовы тестировать технологии, которые отправляются в космос? 🚀

Участвуйте в SPRINT OFFER для инженеров по автоматизации тестирования (Python) и получите оффер всего за 5 дней.

БЮРО 1440 – российская аэрокосмическая компания, создающая собственную низкоорбитальную спутниковую группировку для высокоскоростной передачи данных с глобальным покрытием.

Команда нанимает в департамент "Единые системы управления и разработка ПО", где инженеры разрабатывают цифровые двойники, инструменты проектирования космической системы, внутреннее облако, дата-платформу, инструменты для разработчиков и системы управления разработкой, занимается тестированием и раскаткой ПО.

💡 Что важно: • Опыт в тестировании от 5 лет; • Высшее техническое образование; • Опыт автоматизации тестирования на Python от 3 лет; • Опыт автоматизации тестирования API, UI и GUI; • Знание SQL, Docker, Kubernetes и Linux.

⚙️ Как проходит SPRINT OFFER: 1️⃣ Оставьте заявку до 24 июня. 2️⃣ Пройдите техническое и менеджерское интервью. 3️⃣ Получите оффер за 5 дней.

💼 Что предлагаем: 🚀 Удалённую работу по РФ, гибридный формат или офис; 🚀 Участие в разработке космических технологий и спутниковых систем связи; 🚀 Карьерный рост внутри команды и возможность развиваться в смежных направлениях; 🚀 Возможность участия в профессиональных конференциях, тренингах и обучение в собственной академии 1440 за счет компании; 🚀 ДМС со стоматологией, страхование, корпоративные скидки и комплексная поддержка сотрудников.

Присоединяйтесь к БЮРО 1440 и станьте частью команды, которая создает связь нового поколения! Отправляйте заявку до 24 июня!

К
Книги для программистов
@bfbook
8.7K

📚 Generative AI Apps with LangChain and Python: A Project-Based Approach to Building Real World LLM Apps (2024) ✍️ Автор: Rabi Jay

Это пошаговый путеводитель по созданию реальных приложений на базе LLM. Задачи на практике, от простых Q&A до сложных многозадачных рабочих процессов, — и все это с помощью Python!

Книга охватывает все необходимые инструменты: LangChain, Pinecone и Streamlit для интеграции с LLM.

⚙️ Что узнаешь и чему научишься?

🤍 Как выбирать правильные LLM

🤍 Строить эффективные подсказки и использовать их в реальных задачах

🤍 Разрабатывать системы поиска, сравнения контента и построения рабочих процессов с использованием embeddings

🤍 Создавать мульти-этапные AI-приложения с помощью LangChain

🐍 Эта книга для Python-разработчиков, которые хотят вырваться из мира теории и научиться строить реальные решения с генеративным ИИ.

🔗 Скачать

📲 Мы в MAX

👉 @bfbook

A
aijobz
@aijobz
1.8K

We’re Hiring | AI Trainee

📍 Bangalore | Work from Office 🎓 Freshers Welcome ⏳ Training Program with Full-Time Opportunity Based on Performance

We are looking for enthusiastic and passionate AI Trainees who are eager to build their career in Artificial Intelligence and emerging technologies.

✨ What You’ll Work On:

▸ Basics of AI & Machine Learning ▸ Prompt Engineering & Generative AI tools ▸ Python programming and automation ▸ AI-driven applications and workflows ▸ Real-time projects and hands-on learning

🎯 Who Can Apply:

▸ 2025 / 2026 pass-out candidates ▸ Basic knowledge of Python or programming concepts ▸ Strong analytical and problem-solving skills ▸ Passion for AI, technology, and continuous learning ▸ Good communication and teamwork skills

🌱 This is a great opportunity to gain practical exposure and grow in a fast-paced learning environment.

📩 Interested candidates can DM me or share their resume on [email protected]

A
aijobss
@aijobss
3.7K

5 Must-Know Python Concepts for AI Engineers

1. 🔥 Tensors & Autograd

Stop writing backprop by hand. requires_grad=True tracks every operation → .backward() applies the chain rule automatically.

import torch

x = torch.tensor(2.0) y = torch.tensor(5.0) w = torch.tensor(0.5, requires_grad=True) b = torch.tensor(0.1, requires_grad=True)

pred = w * x + b loss = (pred - y) ** 2 loss.backward()

print(w.grad.item(), b.grad.item())

✅ Exact gradients, zero math errors.

2. ⚙️ The __call__ Method

Why model(x) works, not model.forward(x). call runs hooks before forward.

class LinearLayer: def __init__(self, w, b): self.w, self.b = w, b self._hooks = []

def __call__(self, x): for hook in self._hooks: hook(x) return self.forward(x)

def forward(self, x): return x * self.w + self.b

⚠️ Always call model(x) — .forward() skips hooks → silent bugs.

3. 💾 Pickle vs ONNX

pickle = Python-locked + code execution risk 🚨. ONNX = static, language-agnostic graph.

import torch

model.eval() dummy_input = torch.randn(1, 10)

torch.onnx.export( model, dummy_input, "model.onnx", export_params=True, opset_version=15, input_names=["input"], output_names=["output"], dynamic_axes={"input": {0: "batch_size"}} )

✅ Portable, fast, decoupled from training code.

4. 🧱 Abstract Base Classes

@abstractmethod forces subclasses to implement methods. Miss one → fails at startup, not mid-request.

from abc import ABC, abstractmethod

class ModelInterface(ABC): @abstractmethod def predict(self, x: list) -> list: ...

@abstractmethod def get_metadata(self) -> dict: ...

✅ Fail fast, fail safe.

5. 🔐 Env Variables & Secrets

Never hardcode keys. Store in .env, gitignore it, load with python-dotenv.

import os from dotenv import load_dotenv

load_dotenv()

api_key = os.getenv("OPENAI_API_KEY") if not api_key: raise ValueError("OPENAI_API_KEY is not set!")

✅ Same code locally + Docker/Lambda. Zero leaks.

❤️ Follow AIJobs  for more AI drops

P
Python Brasil
@pythonbrasil
4.4K

🚀 As vendas para a Python Nordeste 2026 estão abertas!

De 13 a 15 de agosto, Fortaleza recebe a maior conferência da comunidade Python do Nordeste. Serão três dias de palestras, workshops, networking e muito aprendizado.

🎟️ Garanta seu ingresso e venha fazer parte dessa experiência!

🔗https://ingressos.python.org.br/nordeste/2026/

I
IT – Бесплатное обучение для студентов
@competech
5.3K

🌐 ОНЛАЙН

СБЕР объявил о начале регистрации на Международный конкурс по искусственному интеллекту AI Challenge для школьников и студентов желающих попробовать свои силы в решении реальных технологических задач, связанных с искусственным интеллектом, машинным обучением и цифровыми технологиями.

✨Призовой фонд >15 млн.руб.

Предусмотрены три возрастные категории:

«Начинающие» — до 13 лет «Школьники» — до 18 лет «Студенты» — до 25 лет

Требования к участникам:

🔹«Начинающие»: базовые знания программирования на Python и основ классического машинного обучения.

🔹«Школьники» и «Студенты»: умение программировать на Python, владение навыками ИИ и классического машинного обучения.

В зависимости от уровня подготовки участники смогут работать как индивидуально, так и в командах.

Участникам предстоит пройти квалификационный, основной и финальный этапы конкурса.

🖥 Конкурс пройдёт в три этапа:

✔️квалификационный этап — с 1 июня по 15 сентября ✔️основной этап — с 1 июля по 17 сентября ✔️финальный этап — с 12 по 26 октября

🔥 Победители и призёры конкурса будут награждены на международной конференции Artificial Intelligence Journey (AI Journey) в Москве.

❗️Регистрация — до 15 сентября.

ℹ️ Подробности — по ссылке:

https://aiijc.com/ru/

Навигатор IT-образования для школьников

📲 Мы в MAX

M
medicine_chatgpt
@medicine_chatgpt
1.3K

45. Science skills in Google Antigravity. The new Science Skills bundle allows researchers to run complex workflows like protein analysis in minutes using specialized Alpha* models and 30+ major scientific databases.

👇

https://x.com/antigravity/status/2061519617550340492?s=20

https://github.com/google-deepmind/science-skills

🤔 How does a clinical radiologist ACTUALLY use this?

This is NOT a PACS integration or an image-reading AI.

Instead, think of it as your ultimate, hyper-intelligent MDT (Tumor Board) coordinator and diagnostic detective for complex cases. It handles the genetics, pharmacology, and literature so you can focus on the imaging.

📂 WHAT FILES CAN YOU UPLOAD?

- PDFs/Text: Genetic sequencing reports, clinical encounter notes, pathology     reports.   - CSVs/Excel: Patient medication lists, lab results, or your own research datasets.

🗣 REAL-WORLD RADIOLOGY USE CASES & PROMPTS

🚨 Scenario 1: The "Weird Pattern" & Drug Toxicity

You are reading an HRCT and see a crazy pattern of organizing pneumonia or interstitial fibrosis. The patient is on 15 different medications.

- You Upload: A text file or CSV of the patient’s medication list.   - Your Prompt: "I am seeing an unusual pattern of organizing pneumonia on this     patient's HRCT. Here is their medication list. Please use the OpenFDA skill     to query adverse event reports for all these drugs. Tell me which ones have     the highest statistically reported incidence of 'pneumonitis' or     'interstitial lung disease', and summarize the findings."   - How it answers: The AI will write a Python script in the background, query     the OpenFDA database for every drug, analyze the adverse event JSON data,     and output a clean table showing you exactly which drug is the likely     culprit.

🧬 Scenario 2: Pediatric/Neuro/MSK Rare Genetics

You are reading a pediatric whole-body MRI for suspected congenital muscular dystrophy, or a brain MRI for a leukodystrophy. The clinical notes include a newly discovered genetic variant, but you don't know if it matches the imaging phenotype.

- You Upload: The PDF of the geneticist's report.   - Your Prompt: "The report shows a variant at chr21:46126238:G>C in the COL6A2 gene. Use the AlphaGenome and ClinVar skills to analyze this variant. Does it cause a significant functional disruption (like exon skipping)? Summarize if the molecular mechanism correlates with the connective tissue/muscular     dystrophy pattern I am seeing."   - How it answers: It will run an AlphaGenome single-variant analysis. (Fun fact: the AI actually generates real plots showing splice donor disruptions!). It will tell you if the variant is likely benign or pathogenic, helping you suggest genotype-phenotype correlation in your dictation.

📚 Scenario 3: Tumor Board (MDT) Prep & Protocoling

You are presenting a complex oncology case at Tumor Board. The patient is on a brand new targeted therapy, and you need to know if the new liver lesions are metastasis or a known drug effect (pseudoprogression).

- Your Prompt: "Search PubMed and OpenAlex for the latest clinical trials     (2024-2026) regarding MRI response patterns in hepatocellular carcinoma     treated with [Specific Immunotherapy]. Use the fetch tool to download the     abstracts and full PDFs if open-access. Summarize the imaging pitfalls,     specifically looking for rates of pseudoprogression."   - How it answers: The agent will autonomously query PubMed using advanced MeSH     tags, download the relevant papers, read them, and give you a bulleted     summary with proper citations (e.g., [1], [2]) that you can literally     copy-paste into your Tumor Board slides.

▶️ When you ask these questions, Antigravity doesn't just "guess" like ChatGPT usually does. It physically executes the bundled uv Python scripts (like openfda_query.py or search_pubmed.py), pulls the raw scientific data from the servers, reads it, and formats it for you.

▶️For more context regarding these things

👇

https://youtu.be/QvN6Tu6dHYM?si=qB_Siaakjgq4hh_G

P
Python Brasil
@pythonbrasil
3.4K

🎤🐍 As submissões de atividades para a Python Nordeste 2026 estão abertas!

Quer compartilhar conhecimento, apresentar um projeto, contar uma experiência ou ensinar algo novo para a comunidade? Estamos recebendo propostas de palestras e tutoriais para compor a programação do evento.

As submissões podem ser enviadas até 23h59 do dia 19 de junho.

🔗 Envie sua proposta: https://talks.python.org.br/pyne2026/cfp

Não importa se esta é sua primeira apresentação ou se você já tem experiência em eventos: queremos ouvir diferentes vozes, perspectivas e histórias da comunidade Python.

Esperamos sua proposta! 💙💛