代码搜索:machine learning

找到约 10,000 项符合「machine learning」的源代码

代码结果 10,000
www.eeworm.com/read/274824/10850476

v machine.v

module machine(INC_PC,LOAD_ACC,LOAD_PC,RD,WR,LOAD_IR, DATACTL_ENA,HALT,CLK1,ZERO,ENA,OPCODE); output INC_PC, LOAD_ACC,LOAD_PC,RD,WR,LOAD_IR; output DATACTL_EN
www.eeworm.com/read/272848/10941438

h machine.h

// struct used in machine shop simulation #ifndef machine_ #define machine_ #include "arrayQueue.h" #include "job.h" using namespace std; struct machine { arrayQueue jobQ;
www.eeworm.com/read/208178/7117713

ico machine.ico

www.eeworm.com/read/128951/7132652

bas machine.bas

Attribute VB_Name = "Machine" Option Explicit Global hPrinter As Long Public Function Print_ICCID(pICCID As String, PrintType As Integer) As Boolean Dim bRc As Long Dim lPrinterACKTimeout
www.eeworm.com/read/392997/7247742

cpp machine.cpp

// machine.cc // Routines for simulating the execution of user programs. // // DO NOT CHANGE -- part of the machine emulation // // Copyright (c) 1992-1993 The Regents of the University of Californi
www.eeworm.com/read/392997/7247769

h machine.h

// machine.h // Data structures for simulating the execution of user programs // running on top of Nachos. // // User programs are loaded into "mainMemory"; to Nachos, // this looks just like an arra
www.eeworm.com/read/392997/7247796

o machine.o

www.eeworm.com/read/460207/7255745

v machine.v

module machine(clk,reset,in,out); input clk,reset,in; output out; reg out; parameter set0=0,hold=1,set1=2; reg [1:0] state; always@(posedge clk or negedge reset) begin if
www.eeworm.com/read/459616/7270180

dat machine.dat

3 6 2 0 1 3 1 2 2 4 3 3 2 2 2 1 4 4 3 6 2 1 3 2 1 3 2 1 3 2 4 1 1 2 5 2 2 1 2 3 3 1 1 2 3
www.eeworm.com/read/459616/7270238

cpp machine.cpp

// machine shop simulation #include #include "lqueue.h" #include "xcept.h" #include "job.h" #include "machine.h" #include "eventl.h" // globals long Now = 0; // current time i