uk
Feedback
DataSpoof

DataSpoof

Відкрити в Telegram

Learn Data Science https://dataspoof4081.graphy.com/membership Artificial Intelligence Machine Learning Data Science Deep learning Computer vision NLP Big data

Показати більше

📈 Аналітичний огляд Telegram-каналу DataSpoof

Канал DataSpoof (@dataspoof) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 16 133 підписників, посідаючи 12 548 місце в категорії Освіта та 26 541 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 16 133 підписників.

За останніми даними від 22 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на -144, а за останні 24 години на -5, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 7.89%. Протягом перших 24 годин після публікації контент зазвичай збирає N/A% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 0 переглядів. Протягом першої доби публікація в середньому набирає 0 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 0.
  • Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як api, llm, pipeline, +9183182, engineer.

📝 Опис та контентна політика

Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
Learn Data Science https://dataspoof4081.graphy.com/membership Artificial Intelligence Machine Learning Data Science Deep learning Computer vision NLP Big data

Завдяки високій частоті оновлень (останні дані отримано 23 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Освіта.

16 133
Підписники
-524 години
-277 днів
-14430 день
Архів дописів
DataSpoof
16 133
Which of the following is statements is false
Anonymous voting

DataSpoof
16 133
Regression line can be drawn in which of the following plots
Anonymous voting

DataSpoof
16 133
Overfitting is a major problem for neural networks. Which of the following can help prevent overfitting?
Anonymous voting

DataSpoof
16 133
In regression analysis, if the independent variable is measured in kilograms, the dependent variable
Anonymous voting

DataSpoof
16 133
Sensitivity in confusion matrix is
Anonymous voting

DataSpoof
16 133
photo content

DataSpoof
16 133
If the correlation coefficient is a positive value, then the slope of the regression line
Anonymous voting

DataSpoof
16 133
If the coefficient of determination is equal to 1, then the correlation coefficient
Anonymous voting

DataSpoof
16 133
In a regression analysis if r squared = 1, then
Anonymous voting

DataSpoof
16 133
Sum of squared error can never be
Anonymous voting

DataSpoof
16 133
In regression analysis, the variable that is being predicted is the
Anonymous voting

DataSpoof
16 133
The coefficient of correlation
Anonymous voting

DataSpoof
16 133
The coefficient of correlation
Anonymous voting

DataSpoof
16 133
Some interview questions related to Data science 1- what is difference between structured data and unstructured data. 2- what is multicollinearity.and how to remove them 3- which algorithms you use to find the most correlated features in the datasets. 4- define entropy 5- what is the workflow of principal component analysis 6- what are the applications of principal component analysis not with respect to dimensionality reduction 7- what is the Convolutional neural network. Explain me its working

DataSpoof
16 133
Python_Complete_cheatsheet.pdf2.37 MB

DataSpoof
16 133
TLA: Twitter Linguistic Analysis - TLA is built using PyTorch, Transformers and several other state of the art machine learni
TLA: Twitter Linguistic Analysis - TLA is built using PyTorch, Transformers and several other state of the art machine learning techniques and it aims to expedite and structure the cumbersome process of collecting, labeling, and analyzing data from Twitter for a corpus of languages while providing detailed labeled datasets for all the languages. $ pip install TLAF https://github.com/tusharsarkar3/TLA

DataSpoof
16 133
Make sure to follow us on our instagram page. Where we post each topics I carousel post www.instagram.com/dataspoof
Make sure to follow us on our instagram page. Where we post each topics I carousel post www.instagram.com/dataspoof

DataSpoof
16 133
Feature Scaling is one of the most useful and necessary transformations to perform on a training dataset, since with very few exceptions, ML algorithms do not fit well to datasets with attributes that have very different scales. Let's talk about it 🧵 There are 2 very effective techniques to transform all the attributes of a dataset to the same scale, which are: ▪️ Normalization ▪️ Standardization The 2 techniques perform the same task, but in different ways. Moreover, each one has its strengths and weaknesses. Normalization (min-max scaling) is very simple: values are shifted and rescaled to be in the range of 0 and 1. This is achieved by subtracting each value by the min value and dividing the result by the difference between the max and min value. In contrast, Standardization first subtracts the mean value (so that the values always have zero mean) and then divides the result by the standard deviation (so that the resulting distribution has unit variance). More about them: ▪️Standardization doesn't frame the data between the range 0-1, which is undesirable for some algorithms. ▪️Standardization is robust to outliers. ▪️Normalization is sensitive to outliers. A very large value may squash the other values in the range 0.0-0.2. Both algorithms are implemented in the Scikit-learn Python library and are very easy to use. Check below Google Colab code with a toy example, where you can see how each technique works. https://colab.research.google.com/drive/1DsvTezhnwfS7bPAeHHHHLHzcZTvjBzLc?usp=sharing Check below spreadsheet, where you can see another example, step by step, of how to normalize and standardize your data. https://docs.google.com/spreadsheets/d/14GsqJxrulv2CBW_XyNUGoA-f9l-6iKuZLJMcc2_5tZM/edit?usp=drivesdk Well, the real benefit of feature scaling is when you want to train a model from a dataset with many features (e.g., m > 10) and these features have very different scales (different orders of magnitude). For NN this preprocessing is key. Enable gradient descent to converge faster