installation
!pip install fastai
!conda install -c fastai -c pytorch fastai ## library ### fastcore
fastscript
library for fast scripting
from fastscript import *@call_parse
def main(
msg:Param(“The message”, str), upper:Param(“Convert to uppercase?”, bool_arg)=False
):
print(msg.upper() if upper else msg)
fastgpu
fastgpu_poll could check whether there is any script is waiting to be executed