Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
https://learn.microsoft.com/en-us/azure/machine-learning/how-to-understand-automated-ml?view=azureml-api-2 | |
https://learn.microsoft.com/en-us/azure/machine-learning/how-to-configure-auto-train?view=azureml-api-2&tabs=python#supported-algorithms | |
https://github.com/Azure/azureml-examples/ | |
https://github.com/MicrosoftLearning/mslearn-azure-ml | |
https://www.kaggle.com/code/shivan118/blood-donation-analysis/notebook | |
OpenAI Api key : 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 | |
Langchain Api Key : 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 |
This file contains hidden or 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
public class ShowPropertyOnPageTypeAttribute : ValidationAttribute, IDisplayMetadataProvider | |
{ | |
private readonly string[] _allowedPageTypes; | |
public ShowPropertyOnPageTypeAttribute(string[] allowedTypes) | |
{ | |
_allowedPageTypes = allowedTypes ?? Array.Empty<string>(); | |
} | |
protected override ValidationResult IsValid(object value, ValidationContext validationContext) |
This file contains hidden or 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
How Feature folder works? | |
https://chatgpt.com/share/533b5446-5944-4d9c-b2b2-df94dc864771 |
This file contains hidden or 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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//when we initialize this class in this way it automatically call Add method to add "sfds" to _options. | |
TheEnumClass theEnumClass = new TheEnumClass() {"sfsd" }; | |
foreach (var item in theEnumClass) | |
{ |
This file contains hidden or 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
[ScheduledPlugIn(DisplayName = "Remove russian content")] | |
public class RemoveRussianContent : ScheduledJobBase | |
{ | |
private readonly IContentTypeRepository _contentTypeRepository; | |
private readonly IContentModelUsage _contentModelUsage; | |
private readonly IContentRepository _contentRepository; | |
public RemoveRussianContent(IContentTypeRepository contentTypeRepository, IContentModelUsage contentModelUsage, IContentRepository contentRepository) | |
{ | |
_contentTypeRepository = contentTypeRepository; |