mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
removed defunct textual inversion script (#2433)
The original textual inversion script in scripts is now superseded. The replacement can be found in ldm/invoke/textual_inversion.py and is a merging of the command line and front end scripts. After running `pip install -e .` there will be a `textual_inversion` command on your path. You can activate the front end this way: `textual_inversion -gui`
This commit is contained in:
commit
c18db4e47b
@ -1,11 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# Copyright 2023, Lincoln Stein @lstein
|
||||
from ldm.invoke.globals import Globals, global_set_root
|
||||
from ldm.invoke.textual_inversion_training import parse_args, do_textual_inversion_training
|
||||
|
||||
if __name__ == "__main__":
|
||||
args = parse_args()
|
||||
global_set_root(args.root_dir or Globals.root)
|
||||
kwargs = vars(args)
|
||||
do_textual_inversion_training(**kwargs)
|
Loading…
Reference in New Issue
Block a user