🌐 AI搜索 & 代理 主页
Skip to content

Commit 73a86a7

Browse files
committed
more
1 parent 9ec8af7 commit 73a86a7

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ SELECT * FROM pgml.train(
5656
'Human-friendly project name',
5757
'regression',
5858
'<name of the table or view containing the data>',
59-
'<name of the column containing the y target value>'
59+
'<name of the column containing the y target values>'
6060
);
6161
```
6262

@@ -70,7 +70,7 @@ Once the model is trained, making predictions is as simple as:
7070
SELECT pgml.predict('Human-friendly project name', ARRAY[...]) AS prediction_score;
7171
```
7272

73-
where `ARRAY[...]` is a list of the features for which we want to run a prediction. This list has to be in the same order as the columns in the data table. This score then can be used in normal queries, for example:
73+
where `ARRAY[...]` is a list of features for which we want to run a prediction. This list has to be in the same order as the columns in the data table. This score then can be used in normal queries, for example:
7474

7575
```sql
7676
SELECT *,
@@ -92,7 +92,7 @@ As data in your database changes, it is possible to retrain the model again to g
9292

9393
## Roadmap
9494

95-
This project is currently a proof of concept. Some important features which we are currently thinking about or working on are listed below.
95+
This project is currently a proof of concept. Some important features, which we are currently thinking about or working on, are listed below.
9696

9797
### Production deployment
9898

@@ -108,11 +108,17 @@ A good looking and useful UI goes a long way. A dashboard similar to existing so
108108

109109
A data explorer allows anyone to browse the dataset in production and to find useful tables and features to build effective machine learning models.
110110

111+
111112
### More algorithms
112113

113114
Scikit-Learn is a good start, but we're also thinking about including Tensorflow, Pytorch, and many more useful models.
114115

115116

117+
### Scheduled training
118+
119+
In applications where data changes often, it's useful to retrain the models automatically on a schedule, e.g. every day, every week, etc.
120+
121+
116122
### FAQ
117123

118124
*How far can this scale?*

0 commit comments

Comments
 (0)