Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify Transcription for GcsTrajectoryOptimization Costs #21981

Open
cohnt opened this issue Oct 1, 2024 · 15 comments
Open

Specify Transcription for GcsTrajectoryOptimization Costs #21981

cohnt opened this issue Oct 1, 2024 · 15 comments
Assignees
Labels
component: planning and control Optimization-based planning and control, and search- and sampling-based planning type: feature request

Comments

@cohnt
Copy link
Contributor

cohnt commented Oct 1, 2024

#21179 added the ability to specify which transcriptions a cost or constraint in GraphOfConvexSets is used for. This functionality would be useful in GcsTrajectoryOptimization, but the various AddCost... methods do not allow you to specify the transcription. Semi-related to #21460?

@cohnt cohnt added type: feature request component: planning and control Optimization-based planning and control, and search- and sampling-based planning labels Oct 1, 2024
@rpoyner-tri
Copy link
Contributor

Assigning component owner @hongkai-dai for further investigation.

@hongkai-dai hongkai-dai assigned cohnt and unassigned hongkai-dai Oct 2, 2024
@hongkai-dai
Copy link
Contributor

I am less familiar with GcsTrajectoryOptimization. I think @cohnt and @wrangelvid know that code better than I do. Re-assigned to @cohnt

@cohnt
Copy link
Contributor Author

cohnt commented Oct 2, 2024

Happy to take this one on -- just not sure when I'll get to it.

David, are you alright if I just match the interface used in GraphOfConvexSets -- taking in a std::unordered_set<Transcription>?

@wrangelvid
Copy link
Contributor

David, are you alright if I just match the interface used in GraphOfConvexSets -- taking in a

Can you elaborate on an example use case? I think this can be quite a footgun if not used right... e.g. Adding a time minimizing cost to the relaxation, but then minimizing path length in the restriction could make the relaxation arbitrary loose.

@cohnt
Copy link
Contributor Author

cohnt commented Oct 2, 2024

If I want to use a richer nonconvex objective for the rounding stage, but a convex surrogate for the relaxation, we don't have an easy way of doing that yet.

Another thing I've experimented with is using an L1 cost for the relaxation, and an L2 cost for the rounding. That way, you end up with an LP instead of an SOCP, which seems to be faster and use less memory (important for really big graphs).

@wrangelvid
Copy link
Contributor

I see. It makes sense for a generic AddCost function.

If adding an L1 path length cost to the relaxation becomes the standard way, perhaps invoking it through an option in the AddPathLengthCost yields a better developer experience?

@RussTedrake
Copy link
Contributor

I'm also a little worried that we need to be careful with what APIs we offer here. Of course, one can always get the underlying GCS object and work with that.

If I want to use a richer nonconvex objective for the rounding stage, but a convex surrogate for the relaxation, we don't have an easy way of doing that yet.

I don't think we actually offer any nonconvex objectives yet, do we? For the nonconvex costs, the philosophy is that when calling e.g. AddContinuityConstraints, we already and automatically add the convex surrogate for the relaxation and the nonconvex for the restriction + MIP.

Another thing I've experimented with is using an L1 cost for the relaxation, and an L2 cost for the rounding. That way, you end up with an LP instead of an SOCP, which seems to be faster and use less memory (important for really big graphs).

That's pretty specific and special case. We could potentially also achieve that by making sure folks can remove the costs that get added.

I think we need to balance giving people modeling power here vs protecting people from misusing the tool. GCS is more general, GcsTrajOpt, in my mind, is more about taking people who might not be GCS experts and giving them the modeling tool at the power of trajectories that will protect them from leaving the costs and constraints that we support properly.

@cohnt
Copy link
Contributor Author

cohnt commented Oct 9, 2024

Although we can get the underlying GCS object, we can only get it as const, so I don't think we can add these sorts of costs with the current codebase. Making GCS non-const seems difficult, since you could very easily break what GcsTrajOpt requires. (One also would need to know how GcsTrajOpt is storing variables in the sets -- I'd have to check the code to see if the time scaling is first or last.)

A generic AddCost function that supports specifying kTranscription would definitely give me what I need. Do you (David or Russ) have any thoughts on how we might add that to give us the modeling freedom we're looking for, while still preventing the user from shooting themselves in the foot? Perhaps separate methods AddCost and AddConvexCost, where we can make stronger guarantees in the latter case? (And analogously for constraints?)

@RussTedrake
Copy link
Contributor

Perhaps this requires a whiteboard conversation. But I might prefer something more along the lines of:

GcsTrajectoryOptimization::Subgraph::AddPathPositionConstraint(
     const std::shared_ptr<solvers::Constraint>& constraint, 
     const std::shared_ptr<solvers::Constraint> & convex_surrogate,
     double s)

or similar, because it would emphasize the intended workflow.

Note that I chose that particular example based on trying to maintain some consistency w/ AddPathPositionConstraint in KinematicTrajectoryOptimization.

@wrangelvid
Copy link
Contributor

or similar ...

I have a very similar implementation for ‘AddPathPositionConstraint’. The only difference is that I have an additional argument for the desired vertex to add the constraint to. Sometimes, the discretion distance s can be varied based on the properties of the region (for instance, the maximum distance).

Are you suggesting we create a similar interface for costs, such as ‘AddPathPositionCost’?

@RussTedrake
Copy link
Contributor

Sometimes, the discretion distance s can be varied based on the properties of the region (for instance, the maximum distance).

s should always be in [0, 1], so this specification should be robust to scaling, no?

Are you suggesting we create a similar interface for costs, such as ‘AddPathPositionCost’?

If @cohnt is saying that he needs this sort of thing, then yes?

@cohnt
Copy link
Contributor Author

cohnt commented Oct 14, 2024

I'm not quite sure something providing a similar interface to KinematicTrajectoryOptimization's AddPathPositionConstraint would work, since I specifically need to compare two subsequent control points. It seems like there's two distinct types of costs you might want to add -- a cost which is only applied at a specific point along a trajectory, and a sort of path integral cost.

This seems to be bumping into a broader question of how to add modeling freedom to GcsTrajOpt without leaving landmines for unaware users. Maybe we can spend some time at the next GCS standup discussing?

@cohnt
Copy link
Contributor Author

cohnt commented Oct 16, 2024

Here's what we came up with as a result of today's discussion. Russ, please correct me if any of this doesn't match what you were thinking.

At the minimum, we add methods roughly looking like:

  • GcsTrajectoryOptimization::Subgraph::AddConvexCost(const std::shared_ptr<solvers::Cost>& cost, const std::unordered_set<Transcription>& use_in_transcription)
  • GcsTrajectoryOptimization::Subgraph::AddCost(const std::shared_ptr<solvers::Cost>& cost, const std::unordered_set<Transcription>& use_in_transcription)
  • GcsTrajectoryOptimization::Subgraph::AddConvexConstraint(const std::shared_ptr<solvers::Constraint>& constraint, const std::unordered_set<Transcription>& use_in_transcription)
  • GcsTrajectoryOptimization::Subgraph::AddConstraint(const std::shared_ptr<solvers::Constraint>& constraint, const std::unordered_set<Transcription>& use_in_transcription)
  • GcsTrajectoryOptimization::EdgesBetweenSubgraphs::AddConvexConstraint(const std::shared_ptr<solvers::Constraint>& constraint, const std::unordered_set<Transcription>& use_in_transcription)
  • GcsTrajectoryOptimization::EdgesBetweenSubgraphs::AddConstraint(const std::shared_ptr<solvers::Constraint>& constraint, const std::unordered_set<Transcription>& use_in_transcription)

The costs would be applied to each vertex in the Subgraph, and the constraints would be applied to each edge in the Subgraph (or EdgesBetweenSubgraphs). We would check that the given costs and constraints matched the number of variables in a given vertex/edge, although down the line, we could have some syntactic sugar using placeholder variables.

For the convex cost and constraint methods, we could make guarantees that the underlying GCS object would be able to handle what was being asked, but the arbitrary ones would make no such guarantees. Note that GCS currently uses RTTI to add the associated perspective cost/constraint to the relaxation, so perhaps we don't need to check compatibility here (since GCS will already check it).

This would remove the need to specify the transcription in existing methods to add costs and constraints, since the user can go in and manually add the costs to the transcriptions they care about.

@RussTedrake
Copy link
Contributor

RussTedrake commented Oct 17, 2024

Thanks @cohnt for the summary.

We would check that the given costs and constraints matched the number of variables in a given vertex/edge, although down the line, we could have some syntactic sugar using placeholder variables.

I disagree here. I think we want to put the placeholder variable idea in place first. Expecting the constraints to depend on all of the decision variables and match the number + order of the subgraph/EbS storage would be too fragile, I think.

@cohnt
Copy link
Contributor Author

cohnt commented Oct 17, 2024

I want to check that I understand the placeholder variables correctly -- is the idea that we would have a method like GcsTrajectoryOptimization::Subgraph::GetPlaceholderXu which effectively plumbs through GraphOfConvexSets::Vertex::x() for a generic instance of a vertex within the subgraph? (Perhaps two methods, one to return the position variables, and one to return the time scaling variable?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component: planning and control Optimization-based planning and control, and search- and sampling-based planning type: feature request
Projects
Status: No status
Development

No branches or pull requests

5 participants