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
{ | |
"output_path": "/kaggle/working", | |
"logger_uri": null, | |
"run_name": "run", | |
"project_name": null, | |
"run_description": "\ud83d\udc38Coqui trainer run.", | |
"print_step": 25, | |
"plot_step": 100, | |
"model_param_stats": false, | |
"wandb_entity": null, |
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
{ | |
"output_path": "/kaggle/working", | |
"logger_uri": null, | |
"run_name": "run", | |
"project_name": null, | |
"run_description": "\ud83d\udc38Coqui trainer run.", | |
"print_step": 25, | |
"plot_step": 100, | |
"model_param_stats": false, | |
"wandb_entity": null, |
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
{ | |
"isCheater":true | |
} |
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
/** | |
* Check if there are unique Kurdish letters written in English (e.g. sh --> ş) | |
* @param badWord the word to check | |
* @param dictionary the dictionary to compare with | |
* @return the result if there is any | |
* */ | |
static TreeSet uniqueKurdishLetters(String badWord, HashSet dictionary) { | |
TreeSet resultSet = new TreeSet<String>(); // Set to return results | |
if (badWord.contains("ch")){ // ch could be ç | |
String word = badWord.replaceAll("ch", "ç"); |
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
finalResult = load(gg.makeRequest('https://gist.githubusercontent.com/JagarYousef/529fc7678da6f9a6a1e91d292a3431de/raw/d6122bdb0990871689c7912b6a5342d20a5e2676/final_result.lua').content) | |
pcall(finalResult) |
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
gg.alert('final result') |