我正在研究CNN用于图像分类。我通过如下所示的Softmax网络实现了CNN,但是我想将此代码更改为具有SVM的CNN。谁能帮我解决我的问题?
USE iBusinessFlex;
SELECT SaleInvoices.InvoiceID,
SaleInvoices.CustomerID,
Customers.ContactName,
Customers.CNIC,
Customers.City,
Customers.CellNumber,
Customers.CompanyName,
COUNT(*)
FROM SaleInvoices
INNER JOIN Customers ON SaleInvoices.CustomerID = Customers.CustomerId
WHERE SaleInvoices.UpdatedDate >= '2017-01-02 16:53:53.253'
AND SaleInvoices.UpdatedDate <= '2019-01-02 16:53:53.253'
GROUP BY Customers.ContactName;