All public logs
From Rice Wiki
Combined display of all available logs of Rice Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:26, 9 May 2024 Rice talk contribs created page Static discipline (Created page with "The '''static discipline''' is a discipline in computer architecture that requires all circuit elements to produce ''logically valid'' outputs. In the real world circuits, there is no 0's and 1's, only voltage levels. For abstraction, we interpret a range of high voltages as 1 and a range of low voltages as 0. The static discipline ensures that this abstraction doesn't run into problems/undefined behavior by forcing all circuit elements to operate on 1's and 0's. [...") Tag: Visual edit
- 20:18, 9 May 2024 Rice talk contribs created page File:Full adder.png
- 20:18, 9 May 2024 Rice talk contribs uploaded File:Full adder.png
- 19:47, 9 May 2024 Rice talk contribs moved page Add to Adder
- 19:46, 9 May 2024 Rice talk contribs created page Category:ECS154A Midterm (Created blank page)
- 19:46, 9 May 2024 Rice talk contribs created page Two's complement (Created page with " '''Two's complement''' is a way to represent signed integers in binary. It is more widely used than its counterpart signed magnitude due to advantages like ease of operations. = Operation = In this system, think of the first bit in the bit pattern as negative. For example, 101 would be 4 + 1 = 5 as an unsigned number, but -4 + 1 = -3 as a signed number represented by 2's complement. To negate signed numbers, flip all bits and add 1. This comes from math: <math>-2...")
- 19:42, 9 May 2024 Rice talk contribs created page Discipline (Created page with "There is a high amount of abstraction related to computer architecture, from physical to program. A '''discipline''' is a way to manage that complexity by intentionally limiting design choices. = Source = * Computer Architecture ARM book Category:Computer Architecture")
- 19:31, 9 May 2024 Rice talk contribs created page Multiplexer (Created page with "A '''multiplexer (MUX)''' takes in many inputs and a select input. Based on the select input, it outputs one specific input. Category:Computer Architecture")
- 15:13, 8 May 2024 Rice talk contribs created page Dynamic discipline (Created page with "Synchronous sequential circuit inputs must be stable during aperture time around clock edge. Category:Computer Architecture")
- 22:22, 6 May 2024 Rice talk contribs created page D latch (Created page with "thumb|Figure 1. Schematic of a D latch The '''D latch''' is a direct upgrade from an SR latch. It has two inputs: (D)ata and (E)nabler. When ''E'' is activated, ''D'' is stored into the latch. When the enabler is deactivated, the circuit continues to latch the current value regardless of ''D''. = Clocked D latch = By connecting a clock to the enabler, you get a '''clocked D latch''' that is synchronized with the rest of the circuit. This is...") Tag: Visual edit
- 22:21, 6 May 2024 Rice talk contribs created page File:D latch.png
- 22:21, 6 May 2024 Rice talk contribs uploaded File:D latch.png
- 20:21, 6 May 2024 Rice talk contribs created page File:SR latch with not.png
- 20:21, 6 May 2024 Rice talk contribs uploaded File:SR latch with not.png
- 20:12, 6 May 2024 Rice talk contribs created page File:SR latch schematic.png
- 20:12, 6 May 2024 Rice talk contribs uploaded File:SR latch schematic.png
- 19:35, 3 May 2024 Rice talk contribs created page Timer (Created page with "A '''timer''' is a circuit that takes in an increase in input and generates an increase in output after an amount of time passes. = Real timers = Ideally, we want an instant transition from low to high. This is impossible. Real world timers looks kinda like a sigmoid lol. Category:Computer Architecture")
- 19:34, 3 May 2024 Rice talk contribs created page Finite state machine (Created page with "The '''state''' of the program is its memory. A '''finite state machine''' continuously computes the current state with the previous state based on a function. In a '''Moore circuit''', output only depends on the current state. In contrast, in a ''Mealy circuit''', input is also wired into the output logic. Category:Computer Architecture")
- 15:21, 3 May 2024 Rice talk contribs created page Timing (Created page with " = Delay = The amount of time passed before the output follows the input is the propagation delay. It is the maximum delay from input to output. During this time, the output is unpredictable. Since the output is unpredictable during the time after input and before propagation delay passed, it is possible to read an output during this time. This is the contamination delay: the minimum delay from input to output. The reason for the unpredictability at contaminati...")
- 15:09, 3 May 2024 Rice talk contribs created page Propagation delay (Created page with "The propagation delay is the time before which a circuit element stabilizes. Category:Computer Architecture")
- 21:28, 1 May 2024 Rice talk contribs created page Linear combination (Created page with "The linear combination of any homogeneous solution is still a solution. Category:Differential Equations")
- 21:27, 1 May 2024 Rice talk contribs created page Second order linear ODE (Created page with "Second order linear ODEs are in the following form: <math> y''+p(t)y'+q(t)y=g(t) </math> Important types of second order linear ODEs include * Homogeneous * Constant coefficients (where p and q are constants) = Initial value problem = There are two arbitrary constants in the solution of a second order linear ODE, so we need two initial conditions. <math> \begin{cases} y(t_0)=y_0\\ y'(t_0)=y_0' \end{cases} </math> = Solutions = == Constant coefficient, homogeneou...")
- 21:21, 1 May 2024 Rice talk contribs moved page First Order Scalar ODE to First order scalar ODE
- 03:48, 1 May 2024 Rice talk contribs created page Nondimensionalization (Created page with "'''Nondimensionalization''' is a technique for simplifying equations, where the dependent variables are changed in such a way that constants are removed. An example would be logistic ODE.")
- 03:47, 1 May 2024 Rice talk contribs created page Logistic ODE (Created page with "Solved by nondimensionalization Category:Differential Equations")
- 03:22, 1 May 2024 Rice talk contribs created page Feed-forward pass (Created page with "The '''feed-forward pass''' is the process of obtaining the result of a neural network. The input is fed into the network, which transforms it layer-by-layer, each layer ''feeding'' its computed results ''forward'' to the next layer until the output layer is reached.") Tag: Visual edit
- 03:18, 1 May 2024 Rice talk contribs created page Back propagation (Created page with "'''Back propagation''' is a error calculation technique. It consists of passing a loss function ''backwards'' through a neural network layer-by-layer to update its weights. = Procedure = Consider the following RSS loss function (halved for easier derivative). <math> E = \frac{1}{2}\sum (y_i - \bf{w}\bf{x})^2 </math> After each feed-forward pass where one data point is passed through the neural network, the gradient of the loss function is computed. We compute gra...")
- 00:22, 1 May 2024 Rice talk contribs created page Label encoding (Created page with "'''Label encoding''' encodes ordinal categorical data into numerical ones by representing them as discrete numbers. It does not work for nominal data. Category: Machine Learning")
- 00:21, 1 May 2024 Rice talk contribs created page One-hot encoding (Created page with "'''One-hot encoding''' encodes nominal categorical data into numerical ones by representing them as binary vectors. Category: Machine Learning")
- 00:15, 1 May 2024 Rice talk contribs created page Activation function (Created page with "The '''activation function''' determines the output of a neuron in a neural network. It generates the output of the neuron from the linear combination of inputs calculated by the neuron. The choice of activation function varies depending on the machine learning task. A simple linear activation function or no activation function is just linear regression. A sigmoid function can be used for a classification task.")
- 00:14, 1 May 2024 Rice talk contribs moved page Linear Regression to Linear regression
- 23:50, 30 April 2024 Rice talk contribs created page Neural network (Created page with "A '''neural network''' is a type of machine learning model that utilizes layers of connected '''neurons''' to perform classification and regression. = Structure = == Neuron == The '''neuron''' is the data-processing unit that composes a neural network. It combines information from multiple neurons (or input) and become activated or deactivated. The output is determined by the following steps: # A neuron generates a linear combination of input data, ''z''. This is done...")
- 23:31, 30 April 2024 Rice talk contribs created page File:Covex vs. Non-convex.png
- 23:31, 30 April 2024 Rice talk contribs uploaded File:Covex vs. Non-convex.png
- 23:30, 30 April 2024 Rice talk contribs created page Artificial neural network (Created page with "An '''artificial neural network (ANN)''' is a machine learning algorithm that uses three layers of neurons to perform classification/regression. = Structure = All ANN's consist of three layers of neurons: the input layer, the hidden layer, and the output layer. The number of neurons in each layer determines the complexity of the model, with a larger layer indicating a more complicated model. Each neuron takes in information from neurons of the previous layer (and for t...")
- 15:35, 29 April 2024 Rice talk contribs created page SR latch (Created page with "thumb|Figure 1. SR latch circuit and truth table The '''set-reset latch''' is a circuit that stores a value in a bistable circuit using two NOR gates. It is the fundamental building block for memory cells.") Tag: Visual edit
- 15:34, 29 April 2024 Rice talk contribs created page File:SR Latch.png
- 15:34, 29 April 2024 Rice talk contribs uploaded File:SR Latch.png
- 15:18, 29 April 2024 Rice talk contribs created page Astable (Created page with "'''Astable''' circuits do not have a stable state. An example would be a clock, which fluctuates between 0 and 1. Category:Computer Architecture") Tag: Visual edit
- 15:17, 29 April 2024 Rice talk contribs created page Bistable (Created page with "A '''bistable''' circuit has two stable states. Think of two NOT gates feedbacking in a loop. Category:Computer Architecture") Tag: Visual edit
- 22:27, 26 April 2024 Rice talk contribs created page Existence-uniqueness (Created page with "Consider an IVP for a general first order scalar ODE. <math> \begin{cases} y' = f(t,y)\\ y(t_0) = y_0 \end{cases} </math> The '''existence-uniqueness theorem''' theorem states that if <math>f(t,y)</math> and its derivative w.r.t. y is continuous in some rectangle <math>a<t<b</math>, <math>c<y<d</math> about <math>(t_0, y_0)</math>, then there exists a unique solution of the IVP defined for some time interval <math>a'<t<b'</math> about...")
- 06:47, 26 April 2024 Rice talk contribs moved page Outliers to Outlier
- 06:45, 26 April 2024 Rice talk contribs created page File:Skewness mitigation.png
- 06:45, 26 April 2024 Rice talk contribs uploaded File:Skewness mitigation.png
- 06:44, 26 April 2024 Rice talk contribs created page Skewness (Created page with "The '''skewness''' of a dataset determines the direction of the outliers. = Impact = Many models assume the data to be normally distributed. Skewed data in those models will result in inaccurate predictions. = Detection = Data skewness is detected during Exploratory data analysis. The first method is visualization. Just look at a graph lol. Numerically, in a dataset, if the median < the mean, then it is skewed to the right. Vice versa. = Mitigate pr...")
- 06:40, 26 April 2024 Rice talk contribs created page Outliers (Created page with "Outliers are samples that show abnormal distance from other samples. They impact the accuracy of the model. Outliers are detected during Exploratory data analysis. Several detection methods are listed. *Background knowledge such as impossible values like negative age *Visualization such as scatter plot *Data Analysis such as box plot *ML algorithms such as One-Class-SVM Category:Machine Learning")
- 06:22, 26 April 2024 Rice talk contribs created page Dataset (Created page with "In machine learning, a model operates on a '''dataset'''. = Attributes of a dataset = The '''completeness''' of a dataset is the extent to which it contains all relevant '''features''' necessary for a given task. A dataset needs to have a sufficient number of observations, measured by the '''size''' of the dataset. The '''validity''' of the dataset is how accurate, clean, and relevant the data in the dataset is. A dataset can be '''high dimensional''', meaning that i...")
- 06:12, 26 April 2024 Rice talk contribs moved page Exploratory Data Analysis to Exploratory data analysis
- 05:26, 26 April 2024 Rice talk contribs created page File:Linearly separable data.png
- 05:26, 26 April 2024 Rice talk contribs uploaded File:Linearly separable data.png