/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/machine-learning/tutorials/snippets/predict-prices/csharp/TestTrips.cs
23 строки
523 B
Youssef Victor
Move ml snippets (#19418)
10 июл 2020, 22:33
Не верифицирован
10 июл 2020, 22:33
6b3a8e6
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Text; namespace TaxiFarePrediction { // <Snippet1> static class TestTrips // </Snippet1> { // <Snippet2> internal static readonly TaxiTrip Trip1 = new TaxiTrip { VendorId = "VTS", RateCode = "1", PassengerCount = 1, TripDistance = 10.33f, PaymentType = "CSH", FareAmount = 0 // predict it. actual = 29.5 }; // </Snippet2> } }