🐎BLOG🐎

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できたー! 結果