看起来回滚到任何迁移都可以使用:
./manage.py migrate <app> <migration_to_go_to>
Run Code Online (Sandbox Code Playgroud)
但是,这需要应用实际迁移,我需要回滚第一次迁移!
具体来说,我想回滚内置的"会话"应用程序(只有一个迁移,"0001_initial".)
有没有办法实现这个目标?
谢谢!
I've started using Dagster in our ML pipeline, and am running into some basic issues that I'm wondering if I'm missing something trivial here or if this is just how it is...
Say I have a simple ML pipepline:
Load raw data --> Process data into table --> Split train / test --> train model --> evaluate model.
Run Code Online (Sandbox Code Playgroud)
A linear model is straight forward in Dagster. But what if I want to add a little loop, say for cross-validation purposes: …