Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: sklearn
|
| 6 |
---
|
| 7 |
+
# App Rating Predictor AI Model
|
| 8 |
+
## Overview
|
| 9 |
+
This AI model, App Rating Predictor, is designed to predict the ratings of mobile applications based on various features and characteristics. It utilizes machine learning algorithms to analyze app data and provide accurate rating predictions.
|
| 10 |
+
|
| 11 |
+
## Features
|
| 12 |
+
|
| 13 |
+
Predicts app ratings based on input features
|
| 14 |
+
Easy-to-use interface for inputting app data
|
| 15 |
+
Fast and efficient prediction results
|
| 16 |
+
|
| 17 |
+
## Installation
|
| 18 |
+
|
| 19 |
+
Clone the repository to your local machine.
|
| 20 |
+
Install next requirements: joblib, sklearn
|
| 21 |
+
Create file with this context:
|
| 22 |
+
|
| 23 |
+
import joblib
|
| 24 |
+
model = joblib.load('VERSION OF PredictoRate.pkl')
|
| 25 |
+
new_data = [[30, 25.2, 1]]
|
| 26 |
+
predictions = model.predict(new_data)
|
| 27 |
+
print(predictions)
|
| 28 |
+
|
| 29 |
+
Remember! After download of PredictoRate(Version) you need to replace 'VERSION OF PredictoRate.pkl' to your version!
|
| 30 |
+
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
Input the relevant app features such as size, category, and reviews.
|
| 34 |
+
After input press enter and ai predicted your app rating.
|
| 35 |
+
View the predicted rating output on the screen.
|
| 36 |
+
|
| 37 |
+
## Technologies Used
|
| 38 |
+
|
| 39 |
+
Python
|
| 40 |
+
Machine Learning (Scikit-learn)
|
| 41 |
+
Pandas (for the train model)
|
| 42 |
+
|
| 43 |
+
## License
|
| 44 |
+
|
| 45 |
+
This project is licensed under the [Creative Commons v1.0 Universal] License - see the LICENSE.md file for details.
|
| 46 |
+
Acknowledgements
|