ML .NETチュートリアル時にでたエラー
pulished:
発生地点
https://dotnet.microsoft.com/en-us/learn/ml-dotnet/get-started-tutorial/consume
dotnet run
しようとしたところ、エラー…。
エラー内容
/Users/GOBO/dotNET/MyMLdotNetApp/SentimentModel/SentimentModel.training.cs(62,29): error CS0103: The name 'File' does not exist in the current context [/Users/GOBO/dotNET/MyMLdotNetApp/SentimentModel/SentimentModel.csproj]
The build failed. Fix the build errors and run again.
SentimentModel.training.cs
内 53-56行目
調査
- 同じエラー出てる人発見:
解決策
この部分コメントアウト
// using (var fs = File.Create(modelSavePath))
// {
// mlContext.Model.Save(model, dataViewSchema, fs);
// }
結果
runできたー!