Last active
June 24, 2024 11:59
-
-
Save Adolfi/0fb1f6ccc7b05a2084bc910975a0757b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.ML; | |
using Microsoft.ML.Data; | |
public class FAQModel | |
{ | |
[ColumnName("Question")] | |
public string Question {get;set;} | |
[ColumnName("Answer")] | |
public string Answer {get;set;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment