Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have 2000+ training images(of custom farm structures) and I want to define my own model using Tensorflow. I researched (https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/defining_your_own_model.md). This is a very high-level documentation. Can anyone help me on how to go about doing this?
The documentation serves as a high level guide in itself, but you essentially need to create a DetectionModel-based class.
You will need to design and implement the methods defined abstractly in the DetectionModel class here such that you create a model that is an instance of this abstract core class. How you design those functions is up to you, but the documentation you linked above provides some good guidelines.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
It is requested that link of class diagram from which a pseudo code is requestedyou have a UML diagram with the following classes and entities present in image attached so please answer question below generate pseudo code of it.............
Q. Use pseudo-code and explain what happens in detail in the updateReminder() method. Make use of how the reminder is integrated into the GPSSystem class?
I tried to break it down but have issues brainstorming pseudo code for it
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Should I represent the database details in my class diagram as separate classes or not ?
When you model entities you don't care about a physical database. It's just implicit that entities are stored in databases. When you refine your design and derive concrete database objects you will eventually make them inherit from a Serializable or the like to make them persistent on a concrete database. Or you relate them to tables which you create as part of a database instance.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
How to represent a system like google docs queuing system using UML class diagrams? I haven't used much UML and trying to design a system like Google docs.
I'm not a UML pro but I took a quick stab at it. There's probably some missing pieces here but I think it's a good start. It would be great if someone who knows how to correctly model this can provide their diagram.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I know it is possible to solve a VRP problem using OptaPlanner. I would like to know if it is possible to route a Heterogeneous Fleet of Vehicles using OptaPlanner.
Yes, it's been done before.
Just change the (Vrp)Vehicle class accordingly. Currently it already has a capacity, so you can already model vehicles with different capacities. But it's trivial to add other properties (such as maximumSpeed, driverLicenseLevelRequirementEnum, safeAgainstRobberyBoolean, ...).
Then simply use those properties in your new/existing score constraints.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Which UML diagram is best suited for depicting function calls? Also are there any diagrams where we can also mention the parameters that we pass to the called functions?
Sequence diagrams are appropriate to represent function calls, and you can specify the parameters and returned values as well.
Communication Diagrams are also an option and tend to go into more detail with regards to parameters used within function calls.