ML-for-AGV-Dispatching

ML-for-AGV-Dispatching:Center.py逐段解读

class Center(object): def __init__(self, env, x, y, routRule, AGV_num, WS_num, AGV_disRuleV, AGV_disRuleW, Ledispatch = "None", Task = ["None", "None" ......

ML-for-AGV-Dispatching:run.py解读

import simpy from ShopFloor import Center import Learn as Le import numpy as np import pandas as pd import pickle import time Task = "None" #TestD, Te ......

ML-for-AGV-Dispatching:Learn.py逐段解读

import numpy as np import Routing import random as rd import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd from sklearn import ......

ML-for-AGV-Dispatching:Dispatcher.py逐段解读

from ShopFloor import Vehicle, Job from Routing import ShortestPath as sp def VID(Controller, Vehicle, rule, routRule, Parameter): if Controller.job_n ......

ML-for-AGV-Dispatching:ShopFloor.py逐段解读

import simpy from Routing import ShortestPath as sp import tkinter as tk import Dispatcher as dp import numpy as np import Learn as Le import copy imp ......

ML-for-AGV-Dispatching:Routing.py逐段解读

# -*- coding: utf-8 -*- """ Created on Mon Nov 20 10:55:40 2017 @author: CIMlab徐孟維 """ ''' Alpha = 0.06 Beta = 0.03 Gamma = 0.01 Dist1 = 3 Dist2 = 7 ' ......
共6篇  :1/1页 首页上一页1下一页尾页