Gaurav dubey

  1. Gaurav Dubey of ‘Khatra Khatra Khatra’ fame to feature in a never
  2. Transportation Problem (capacity allocation) in Python using Gurobi


Download: Gaurav dubey
Size: 58.5 MB

Gaurav Dubey of ‘Khatra Khatra Khatra’ fame to feature in a never

Gaurav Dubey, of ‘Khatra Khatra Khatra’ fame, will perform gags on the stunt-based reality show. The latest on it is that comedian Gaurav Dubey, who entertained audiences with his impeccable comic timing, wit and histrionics on ‘Khatra Khatra Khatra’, is all set to feature in ‘Khatron Ke Khiladi’, albeit in a special avatar and not as a contestant. He will perform gags on the stunt-based reality show, a first in the history of ‘KKK’. The stage is set for the special edition of ‘ Gaurav confirms, “Yes, I will be performing gags and seen in different avatars on the show. You might see me enter the scene just when a contestant is about to perform a task. I will trouble them and joke with them. I am sure it will be a lot of fun. I have already written a few gags and designed some characters for the show. Creative discussions are on and we will hopefully finalise everything soon. Those who liked me on ‘Khatra Khatra Khatra’, will enjoy my performance on ‘KKK’.” The show will also reunite the actor with his ‘Khatra Khatra Khatra’ producer Haarsh Limbachiyaa. The latter, who participated in the ninth edition of ‘KKK’, was renowned for aborting stunts midway. Gaurav shares, “Well, he is known for aborting stunts. I will try my best to make him repeat that, but in a comic way (laughs!).” Ask Gaurav if he would have liked to participate in the show as a contestant and he replies, “No way. Main ek number ka darpok hoon. I fear heights, water and almost everything else they have on th...

Transportation Problem (capacity allocation) in Python using Gurobi

From calculating the MODI (modified distribution) method in Operation Research (Transportation Problem) in 7 full pages during engineering to get to an optimal value, to realizing, this can be built and solved in a few minutes in excel. We have seen the evolution of mathematics with help of increased computational power. To set a context, Transportation Problem, is a linear programming (LP) problem that identifies an optimal solution for transporting one type of product from sources ( i) to destinations ( j) at the minimum cost ( z). The mathematical formulation is as below: Apparently, LinkedIn doesn't allow writing mathematical equations, not even with LaTeX :) Although this is famously known as a Transportation problem, I used this for capacity allocation when I worked as Demand & Supply Planner. Now, the limitation with excel solver is, it can only handle 200 variables at a time, with add-ins like open solver, etc, you can increase the size of the model, but the run time will get significantly impacted. Using python you can build the same model while there are several free solvers available in the arsenal. PuLP is the most famous free optimization modeler, there is Gurobi and even CPLEX. While a free version of the Gurobi modeler and solver license has some size limitations, the academic version comes with no size limitations. I built the same problem using gurobi solver. Here's how I did it, First, install the gurobi package in python: pip install gurobipy==10.0.1 Imp...