(base) PS C:\Users\mischa> cd .\VideoCrafter\ (base) PS C:\Users\mischa\VideoCrafter> conda activate lvdm (lvdm) PS C:\Users\mischa\VideoCrafter> PROMPT="astronaut riding a horse" PROMPT=astronaut riding a horse : The term 'PROMPT=astronaut riding a horse' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:3 + PROMPT="astronaut riding a horse" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (PROMPT=astronaut riding a horse:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException (lvdm) PS C:\Users\mischa\VideoCrafter> OUTDIR="results/" OUTDIR=results/ : The term 'OUTDIR=results/' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:3 + OUTDIR="results/" + ~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (OUTDIR=results/:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException (lvdm) PS C:\Users\mischa\VideoCrafter> (lvdm) PS C:\Users\mischa\VideoCrafter> BASE_PATH="models/base_t2v/model.ckpt" BASE_PATH=models/base_t2v/model.ckpt : The term 'BASE_PATH=models/base_t2v/model.ckpt' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:3 + BASE_PATH="models/base_t2v/model.ckpt" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (BASE_PATH=models/base_t2v/model.ckpt:String) [], CommandNotFoundExcepti on + FullyQualifiedErrorId : CommandNotFoundException (lvdm) PS C:\Users\mischa\VideoCrafter> CONFIG_PATH="models/base_t2v/model_config.yaml" CONFIG_PATH=models/base_t2v/model_config.yaml : The term 'CONFIG_PATH=models/base_t2v/model_config.yaml' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:3 + CONFIG_PATH="models/base_t2v/model_config.yaml" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (CONFIG_PATH=mod...del_config.yaml:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException (lvdm) PS C:\Users\mischa\VideoCrafter> (lvdm) PS C:\Users\mischa\VideoCrafter> python scripts/sample_text2video.py \ Traceback (most recent call last): File "scripts/sample_text2video.py", line 260, in main() File "scripts/sample_text2video.py", line 194, in main config = OmegaConf.load(opt.config_path) File "C:\Users\mischa\anaconda3\envs\lvdm\lib\site-packages\omegaconf\omegaconf.py", line 188, in load raise TypeError("Unexpected file type") TypeError: Unexpected file type (lvdm) PS C:\Users\mischa\VideoCrafter> --ckpt_path $BASE_PATH \ At line:1 char:9 + --ckpt_path $BASE_PATH \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --ckpt_path $BASE_PATH \ + ~~~~~~~~~ Unexpected token 'ckpt_path' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --config_path $CONFIG_PATH \ At line:1 char:9 + --config_path $CONFIG_PATH \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --config_path $CONFIG_PATH \ + ~~~~~~~~~~~ Unexpected token 'config_path' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --prompt "$PROMPT" \ At line:1 char:9 + --prompt "$PROMPT" \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --prompt "$PROMPT" \ + ~~~~~~ Unexpected token 'prompt' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --save_dir $OUTDIR \ At line:1 char:9 + --save_dir $OUTDIR \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --save_dir $OUTDIR \ + ~~~~~~~~ Unexpected token 'save_dir' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --n_samples 1 \ At line:1 char:9 + --n_samples 1 \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --n_samples 1 \ + ~~~~~~~~~ Unexpected token 'n_samples' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --batch_size 1 \ At line:1 char:9 + --batch_size 1 \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --batch_size 1 \ + ~~~~~~~~~~ Unexpected token 'batch_size' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --seed 1000 \ At line:1 char:9 + --seed 1000 \ + ~ Missing expression after unary operator '--'. At line:1 char:9 + --seed 1000 \ + ~~~~ Unexpected token 'seed' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : MissingExpressionAfterOperator (lvdm) PS C:\Users\mischa\VideoCrafter> --show_denoising_progress