As Trump’s deadline approaches, Iranian leaders respond in defiance



A man sits among buildings destroyed in a joint attack by Israel and the United States on April 6, 2026, in Tehran, Iran.
A man sits among buildings destroyed in a joint attack by Israel and the United States on Monday in Tehran, Iran.
Majid Saeedi | Getty Images Europe

President Trump promised on Monday a "complete demolition" of every bridge and power plant in Iran if a deal is not reached by Tuesday at 8 p.m. ET to reopen the Strait of Hormuz.

With President Trump's deadline looming on Tuesday, Iranian officials rejected U.S. demands and presented a plan of their own in response, and Iran's president said that he was willing to die along with millions of Iranians to defend his country.

Iran's 10-point proposal included a guarantee that Iran would not be attacked again, an end to Israeli strikes against the Iranian-backed Hezbollah in Lebanon and removal of sanctions in exchange for the reopening of the Strait of Hormuz, with Iran imposing a $2 million fee for every ship moving through the key waterway, according to the New York Times.

With the clock ticking, Iranian President Masoud Pezeshkian wrote on social media: "More than 14 million brave Iranians have so far declared their readiness to sacrifice their lives to defend Iran. I too have been, am, and will be sacrificing my life for Iran."

Pezeshkian's message appeared to be in response to a call by Iran's junior minister for youth late Monday issued to Iranians, including "young people, cultural and artistic figures, athletes" to form human chains next to the power plants across Iran.

"We will stand hand in hand next to power plants across the country, with every belief and taste, to say: attacking public infrastructure is a war crime," Iran's Deputy Minister of Sports and Youth Alireza Rahimi wrote on social media.

US President Donald Trump, alongside US Secretary of Defense Pete Hegseth (2R) and Chairman of the Joint Chiefs of Staff General Dan Caine (R), takes questions as he speaks about the conflict in Iran in the James S. Brady Press Briefing Room of the White House on April 6, 2026, in Washington, DC.
US President Donald Trump, alongside US Secretary of Defense Pete Hegseth (2R) and Chairman of the Joint Chiefs of Staff General Dan Caine (R), takes questions as he speaks about the conflict in Iran in the James S. Brady Press Briefing Room of the White House on Monday in Washington, DC.
Brendan Smialowski | AFP via Getty Images

Here are more updates on the war in Iran today:

Iranian envoy on negotiations | Strikes in the region


Iran’s envoy says efforts to stop the war ‘approaching a critical’ period

Iran's ambassador in Islamabad, Reza Amiri Mughadam, said on Tuesday that Pakistan's efforts to stop the war are "approaching a critical, sensitive" period.

But Mughadam sounded less enthusiastic in an interview with state-run media, where he set out the country's position: "A complete cessation of the war is Tehran's maximum demand in the process of peace diplomacy," adding, "with a guarantee of non-repetition of aggression."

Doctors and medical staff hold a demonstration regarding recent attacks on hospitals on April 6, 2026, in Tehran, Iran.
Doctors and medical staff hold a demonstration regarding recent attacks on hospitals on Monday in Tehran, Iran.
Majid Saeedi | Getty Images Europe

Mughadam also warned Gulf countries, which he did not name, to "pay attention to their conditions and relations with Iran." He warned: "Know that sooner or later America will leave this region by accepting defeat and you will stay."

Meanwhile, the United Nations Security Council is expected to table a resolution demanding the reopening of the Strait of Hormuz on Tuesday at 11 am ET. The resolution is sponsored by Bahrain.


Israel attacks Iran’s petrochemical facilities, Iran hits energy facility in Saudi Arabia

Israel's military said it attacked one of the "few remaining" petrochemical facilities producing ballistic missile and explosive material in Shiraz. It also said its forces struck a ballistic missile site in northwestern Iran and infrastructure across Iran.

Israel also issued a warning to Iranians on Tuesday, over X, to avoid traveling by train and stay away from railway tracks.

People walk among buildings destroyed in a joint attack by Israel and the United States on April 6, 2026, in Tehran, Iran.
People walk among buildings destroyed in a joint attack by Israel and the United States on Monday in Tehran, Iran.
Majid Saeedi | Getty Images Europe

Iran retaliated by firing missiles in central Israel, Saudi Arabia and Bahrain, forcing the closure of the key King Fahd bridge between the two Gulf countries. Saudi Arabia's ministry of defense said it was assessing damage on its energy facility caused by falling debris from dozens of ballistic missiles and drones intercepted by its air defense systems on Tuesday.

Air defense systems in the United Arab Emirates also engaged with incoming missiles and drones on Tuesday, authorities said.

Daniel Estrin in Tel Aviv, Diaa Hadid in Mumbai and Tina Kraja in Washington, DC contributed to this report.

Copyright 2026, NPR



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


What Are Selection Techniques

Selection techniques in machine learning help in reducing the noise by taking in only the relevant data after the pre-processing. The techniques have the ability to choose the relevant variables according to the type of user’s problem. In case any data comes up that is not relevant to the requirement, it tends to slow down the efficiency process of the model and also decrease the accuracy. Therefore, it is very important to have appropriate feature selection techniques for the models in order to have better outcomes and accuracy. 

The main idea of working with selection techniques is to manually extract the relevant settings from the parent set to have high-accuracy model structures.

Feature Selection in Machine learning

The techniques are divided into the category of supervised and unsupervised learning. These two categories are further divided into 4 main methods for selecting the features.

Filter Method :

There are statistical ways for selecting the features using the filter method. The features are selected in the pre-processing stage as there is no learning process involved in this. The aim of this approach is to filter out the unrequired and irrelevant features by using matrices and ranking methods. The most important advantage of using the filter method is that it does not overfit the data.

IMAGE

Wrapper Method :

In this method, a user makes different combinations that are evaluated or compared with a lot of other possible combinations. In this way, the feature selection is done. A subset of features is selected and the algorithm is trained based on the subset. The output of the algorithm then decides if the features will be added or not. This method is further based on 4 types which are:

  • Forward Selection : This process takes in an empty feature set. It keeps adding a feature to each interaction and checks the progress simultaneously as if it is improving or not. This method keeps on iterating unless there comes a feature that does not improve the progress of the model.
  • Backward Elimination : This approach is the complete opposite of the forward selection approach. The process takes in all the features of the algorithm and then keeps removing a feature one by one on each iteration. It checks the progress simultaneously as if it is improving or not. This method keeps on iterating unless there comes a feature that does not improve the progress of the model.
  • Exhaustive Feature Selection : It is the most common approach for feature selection as each feature is set as brute-force. The approach aims to try various combinations of features in order to give the best outcome.
  • Recursive Feature Elimination : This method is based on the greedy approach as its features are selected in a smaller amount. An estimator is made to test every set of features designed and thus we get an outcome of the best features.
  • IMAGE
Embedded Method :

This is a great method for feature selection as it has the advantages for both filter and wrapper methods collectively. The processing time in the embedded method is very high just like the filter method, however, they provide more accurate outcomes.

IMAGE

There are a few techniques involved with embedded methods which are:

  • Regularisation : This aims at regularising the feature selection method simply by adding a penalty if the data gets overfitted in the model. The points shrink to a value of 0 and they are eliminated from the dataset. The types of regularizations are L1, L2, L3, etc. 
  • Random Forest Importance : This technique involves a lot of tree-based approaches to select the features for an algorithm. A number of decision trees are involved in this as the ranking of nodes is performed in all the trees to get the results. After filtering out the irrelevant nodes, a subset of the most relevant nodes creates a final selection of features.
Hybrid Method :

This approach takes in features as small-sized samples. The main idea is to select the features using instance learning. The features that correspond to the instances are selected as they are relevant to the algorithm.

Want to Become a Master in Machine Learning? Then visit here to Learn Machine Learning Training

Machine Learning Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Feature Selection Models

Supervised Model :

This model is defined as the class of machine learning methodologies where the user can train with the help of continuous and well-labelled data. For instance, the data can be historical data where the user wishes to predict whether a customer will take a loan or not. Supervised algorithms tend to train over the well-structured data after the preprocessing and feature characterization of this labelled data. It is further tested on a completely new data point for the prediction of a loan defaulter. The most popular supervised learning algorithms are the k-nearest neighbour algorithm, linear regression algorithm, logistic regression, decision tree, etc.

This is further divided into 2 categories:

  • Regression: The dealing of output variables is done using regressions as it includes graphs, images, etc. For example to determine age, height, etc. 
  • Classification: it helps in classifying different objects such as yellow, orange, wrong or right, etc.
Unsupervised Model

This model is defined as a class of machine learning methodologies where the tasks are performed using the unlabelled data. Clustering is the most popular use case for unsupervised algorithms. It is defined as the process of grouping similar data points together without manual intervention. The most popular unsupervised learning algorithms are k-means, k-medoids, etc. 

This is further divided into 2 categories:

  • Clustering :This means when the machine requires an inherent group while training the data.
  • Association :This category has a set of rules which helps in the identification of massive data. For example, a list of students who could be interested in artificial intelligence as well as machine learning.
HKR Trainings Logo

Subscribe to our YouTube channel to get new updates..!

How To Choose a Feature Selection Model

It is very important for machine learning engineers as well as researchers to understand which feature selection model is most suitable for them. The most data types are known by the engineer, the easier it will be for him to choose properly and wisely. This whole concept is based on 4 main approaches which are:

  • Numerical Input, Numerical Output : There are two methods used in this technique which are Pearson’s correlation coefficient and Spearman’s Rank Coefficient.  The numerals are basically used for the prediction of regression models for continuous numerical such as int, float, etc. 
  • Numerical Input, Categorical Output : There are two methods used in this technique which are the ANOVA correlation coefficient, and Kendall’s rank coefficient. The numerals are basically used for the classification of predictive models for continuous numerical such as int, float, etc. 
  • Categorical Input, Numerical Output : This is a case of the prediction of regression models using input based on categories. The process is the same as numerical input, and categorical output but in a reverse fashion. 
  • Categorical Input, Categorical Output : This is a case of classification of predictive models using both categorical inputs as well as outputs. The main approach affiliated with this method is the Chi-squared method. Moreover, information gain can also be used with this technique.

Machine Learning Training

Weekday / Weekend Batches

Conclusion:

The process of selecting features in machine learning is a vast concept and it involves a lot of research to select the best features. However there is no hard and fast rule for making the selection, it all depends on the type of model and its algorithm and how a machine learning engineer wants to pursue it. Selection techniques in machine learning help in reducing the noise by taking in only the relevant data after the pre-processing. 

In this article, we have talked about various feature selection methods that use certain algorithms for making the best possible outcomes and why we should make this feature selection method. Along with this, we have talked about how we can finalise the best feature selection model to work with.

Related Articles:

EDA in Machine learning



Source link