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
    
  
  
    
  | //credit - https://huggingface.co/blog/fine-tune-wav2vec2-english (Patrick von Platen) | |
| // run this on your Chrome / Browser Console (where Colab is present) | |
| function ConnectButton(){ | |
| console.log("Connect pushed"); | |
| document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click() | |
| } | |
| var colab = setInterval(ConnectButton,60000); | 
  
    
      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
    
  
  
    
  | <#Simple comparison of a serial foreach loop versus a parallel foreach loop | |
| When run on my workstation with $NumberOfIterations=50 this was my output: | |
| elapsed time (serial foreach loop): 20.2380236 | |
| elapsed time (parallel foreach loop): 9.7779777 | |
| Simply copy and paste into Powershell ISE and hit F5 (needs Powershell v3 or above) | |
| Jamie Thomson, 2014-12-09 | |
| #> | |
| workflow workflow1{ | |
| Param($NumberofIterations) | |
| "=======================================================" |