HabrJuly 27, 2026🇷🇺Translated from Russian

Neural Networks Without Magic: 80-Year History, Business Applications, and Why They Will Not Replace Experts Overnight

Vasily Ryazanov, candidate of physical and mathematical sciences and head of the Data Science team at Twinby, sat down with journalist Alexander Shulepov to separate hype from practical value in neural networks. The conversation covers the technology’s long history, how contemporary language models operate, real business deployments, and the persistent need for human expertise.

From family history to Data Science: why neural networks entered his life long before ChatGPT

Ryazanov explains that his path began in the 1970s when his father worked on artificial intelligence and pattern recognition under academician Zhuravlev at the Academy of Sciences after finishing graduate studies around 1977. Early networks processed tables of only hundreds or thousands of rows on computers that ran for hours. By the 2000s the workflow had become clearer: load tabular data, train an algorithm, and obtain results, often written in C++.

He stresses that neural networks are not 10–20 years old but approximately 80 years old. Interest has risen and fallen in waves, with renewed attention around 2014–2015 driven by advances in image recognition, face detection, and projects such as Google DeepDream.

How TikTok became a professional platform

Ryazanov began posting on TikTok in 2019. Initial experiments with monowheel videos and song translations did not stick; a friend’s suggestion to discuss remote work and Data Science produced his first successful clip. The platform’s recommendation engine, which analyzes watch time, likes, on-screen content, speech, and music, quickly matched his material with an interested audience.

Skills and education required

For engineers and data scientists, Ryazanov insists on a solid foundation in probability theory, linear algebra, statistics, programming, and data handling. Entrepreneurs and marketers need only a clear understanding of capabilities, limitations, and data-handling rules. His own education at MIPT remains essential because much of his current work involves code and model training rather than simple prompting.

Distinguishing artificial intelligence, neural networks, and ChatGPT

Artificial intelligence is the broad goal of automating tasks associated with human thinking. Neural networks are one mathematical approach inspired by biological neurons. ChatGPT is a conversational system built on the Generative Pre-trained Transformer architecture; it predicts the next token while respecting dialogue history, safety constraints, and other controls.

Training begins with enormous datasets and GPU clusters to create a base model, followed by domain-specific fine-tuning or connection to corporate data. The cost of training frontier-scale models is dominated by GPUs, electricity, cooling, and infrastructure.

Prompts, Claude, and paid tiers

A prompt is simply a textual instruction that may assign a role, state goals, specify output format, and supply source material. Ryazanov prefers natural conversation with models, often dictating thoughts via keyboard while walking. He uses Claude most frequently because it maintains long context well and produces precise phrasing; ChatGPT remains useful for its multimodal features. Paid plans mainly remove rate limits and provide priority access during peak load.

Hallucinations, confidentiality, and the “AI psychologist” trap

Common beginner mistakes include uploading sensitive documents and placing excessive trust in fluent answers. Models can invent films, misattribute works, or cite nonexistent papers. Ryazanov warns against sending passports, medical records, trade secrets, or proprietary code to external services. When the cost of error is high—in health, finance, law, or safety—every output must be verified against primary sources and domain experts.

Although models can help structure reflections or prepare questions for a therapist or physician, they are not substitutes for professional care. The convenience of receiving a personalized summary in minutes makes the interface psychologically compelling, increasing the risk of over-reliance.

Related articles

AntiMalwareOther

Rostelecom Outage Triggers 29-Minute Mass Disruptions Across Russian Internet Services

A 29-minute failure in Rostelecom's data transmission network on August 6 caused widespread access problems to Russian online services. The operator quickly rerouted traffic to backup equipment, restoring normal operations without revealing the root cause. Users reported issues connecting to marketplaces, banks, social platforms, IT company services and other telecom providers. The majority of complaints originated from Rostelecom's own subscribers who experienced connection and service access failures. Although the incident remained brief and did not escalate into prolonged digital disruption, it highlighted the heavy reliance on a single major provider. The event demonstrated how even a short technical problem at a large operator can simultaneously affect access to stores, financial services and everyday online platforms.

HabrOther

Read-Only Utility Automates Detailed Audits of UserGate NGFW Firewall Policies

A cybersecurity specialist at Gazprom CPS developed a read-only utility to analyze large-scale UserGate NGFW firewall policies without making any configuration changes. The tool connects via the UserGate XML-RPC API to collect rules, statistics, zones, network lists, services, users, and groups, then normalizes the data into a unified model for analysis. It performs eleven independent checks grouped into lifecycle, overly permissive access, observability, and documentation categories, flagging rules that have not fired recently, allow management ports broadly, lack logging, or have empty descriptions. Results are exported to a navigable Excel report featuring a rules-by-checks matrix, human-readable object names, and editable manual verdicts such as OK, requires attention, or false positive. The first full run on a production policy with over 1000 rules and 4500 related objects took 24 minutes and highlighted 39 percent of rules for review, with more than half showing multiple red flags. The approach preserves the original snapshot in JSON for repeatable offline analysis and comparison over time.

AntiMalwareOther

Internet Outages Disrupt Access to Russian Websites and Applications Across Multiple Regions

Users in several Russian regions reported widespread connectivity problems where internet access appeared available but failed to load most domestic websites and online services. Affected areas include Saint Petersburg along with Nizhny Novgorod, Rostov, and Tyumen regions according to reports compiled by the Telegram channel Baza. Connections remained technically active yet produced repeated errors when attempting to reach Russian sites, mobile applications, and web-based platforms. The precise scale of the disruption remains undetermined and it is unclear whether the incidents stem from a single technical fault or simultaneous failures among multiple network operators. No official statements have been issued regarding the root causes or expected restoration timelines. Individuals affected continue to refresh pages and restart applications while waiting for services to recover.

HabrOther

Step-Up Authentication vs 2FA: Implementing Additional Verification for Sensitive Operations in Corporate Systems

Traditional two-factor authentication secures only the initial login, leaving active sessions vulnerable to misuse during sensitive tasks such as accessing payroll data. Step-Up Authentication addresses this by requiring extra verification at the moment of critical actions rather than at login. The article details how one project moved beyond standard Identity Provider features in WSO2 by building a dedicated PIN-code service and gateway-2fa microservice. This approach uses signed cookies with TTL controls and JWT cross-checks to enforce elevated trust levels without disrupting normal user flows. The solution aligns with Zero Trust principles and was monitored via Matomo and ELK for usage and performance metrics. Key implementation considerations include balancing TTL duration, encrypting stored PINs, and conducting load testing before deployment.