Price Predictions for NFT Images

More from Author
Sai Kamal
Sai Kamal

Software Engineer

4 min read

An NFT is an image in the form of a digital token. These tokens are then sold online. AN NFT can be anything in digital form. Every NFT image has its own price and we implement Machine learning techniques to predict the price for the NFT images.

For implementing this problem statement we collected the images and related prices using selenium script around 5000 images from Multiple sources. To extract the information from all the images we used OpenCV and NumPy and we collected the pixel intensities from every image. Hence there are in RGB color space we converted 3-dimensional data into one dimensional which works as independent data for machine learning Algorithms and Prices of each image as a dependent feature.

Techniques used

  • Numpy
  • Pandas
  • Seaborn
  • Matplotlib
  • Statistics
  • Opencv
  • Machine learning Supervised techniques

Using NumPy and pandas we removed the unwanted image which does not carry any kind of information. Hence we are having Independent and dependent features we used Machine learning supervised techniques Like regression and classification_regression Algorithms.

Algorithms used

  • Multiple Linear Regression
  • KNN Regressor
  • Support Vector machine Regressor
  • Adaboost Regressor
  • Decision Tree

For training the data for ML Algorithms we split the data into train and test where the training part has 80% of the data and the test part has 20% of the data.

We trained KNN Regressor, support vector Regressor and Decision tree, and Adaboost Regressor but unfortunately, the results are not so good because KNN needs to collect perfect k-values since the problem is Regression, not a classification so due to the distribution range of values from independent data is too high.

For the support vector machine due to high dimensionality in the data marginal distance and support vectors are very close to each other so we are facing an over-fitting problem while implementing the support vector machine.

Multiple Linear Regression

Hence Multiple linear regression is a regression technique and the result are going better when compare to KNN-R and SVM-R. Initially, the train accuracy for the MLR model was 91 and 82 for the test.

so we find out to improve the performance of the model using feature engineering and Regularization techniques.

Handling Outliers for MLR

Hence the data features are more in size there is no option for us to select the best features because each and every pixel is important that carries the information. so using sci-kit learn and feature engine we handled outliers using the 5th quantile and 95th quantile area which makes to remove the small amount of data which are far away from the remaining data points.

Feature scaling for MLR:

we clear the outliers and there are some features following skewness and some features not following Normal Distribution. Using the feature engine framework we scale down the pixel values using standardization and using yeo johnson transformation we handled skewness to follow Normal Distribution. Hence yeo johnson transformation has no impact on the negative values this technique helps us to handle data.

Even though we handled outliers and skewness of the data. The increase in the test accuracy is not so high so we collected more images and increase the data size. so to check whether the newly added data gives better results or not we implement adjusted r2 techniques just to check the model performance before adding the data and after adding the data. Adding the data really helps us but not is a big scale. so we went to handle the overfitting problems using regularization techniques like L1 and L2 techniques.

Using this Ridge and Lasso regression we reduce the bias on small scale and increase variance on small scale by updating the coefficient values. Updating the values of the coefficients and making errors close to Zero increased the model Performace.
So in the end accuracy value for train and test is

  • Training Accuracy = 98.052948845
  • Test Accuracy = 89.674529872

Hence to check whether our Model is working well or not with the real data we collected some NFT images and predicted the prices. The below table has the complete results for our test images.

Images Actual Price Predicted Price by MLR Model
$176 $144
$89 $119
$212 $254
$143 $189
$2,939.50 $3,159.88

Back To Blogs


Find out our capabilities to match your requirements

contact us