cheatsheet

Hello, I am Wenzhuo Liu, and I work as a data scientist, specializing in Natural Language Processing (NLP). My primary focus is on developing and implementing machine learning models for industry challenges. My journey began with a bachelor's degree in Physics, where I developed a strong scientific foundation. Later I earned an engineering degree in applied mathmatics at Ensta and a master's degree in Data Science at Ecole Polytechnique. These experiences helped me develop the key programming and

...

See on Student Notes »

prouction

1. Explain the Transformation Process, Model of Operation Management? Discuss Various Types of Production Systems with Examples.

Transformation Process:
The transformation process refers to the act of converting inputs (materials, labor, capital, information) into outputs (goods and services) through various processes such as manufacturing, service delivery, and assembly.

Model of Operations Management:
The basic model involves:

  • Inputs (Materials, Labor, Capital, Information) →

  • Transformation

...

See on Wikiteka »

Filo kant

La clasificación kantiana de los juicios

Kant, en su obra Crítica de la razón pura, establece una clasificación de los juicios basada en dos criterios fundamentales: el origen del conocimiento y la relación entre sujeto y predicado.

Según su origen:

Juicios a priori: Son aquellos que no dependen de la experiencia, sino que son universales y necesarios. Ejemplo: "La suma de los ángulos de un triángulo es igual a 180°".

Juicios a posteriori: Son los que derivan de la experiencia y tienen

...

See on Xuletas »

Gen Chem Cheat Sheet

Quiz 1 : * What is the fundamental difference between a homogeneous mixture and a heterogeneous mixture? - A homogeneous mixture has a uniform composition throughout, while a heterogeneous mixture has regions with different compositions. * What is the primary distinguishing factor between an element and a compound? - An element consists of only one type of atom, while a compound is made up of two or more types of atoms chemically bonded together.* What is the relationship between milliliters and

...

See on Student Notes »

exam amity

  1. (a) (i)  possible SDTS. attribute “val” to store the value of each non-terminal.

E -> E1 + T E.val = E1.val + T.val }

 E -> T { E.val = T.val }

T -> T1 * F { T.val = T1.val * F.val }

T -> F { T.val = F.val }

F -> num { F.val = num.value }

(ii) Evaluation using SDTS (bottom-up):

F -> num(4): F.val = 4

F -> num(2): F.val = 2

F -> num(3): F.val = 3

T -> F (for num(2)): T.val = F.val = 2

T -> T * F: T.val = T.val (from num(2)) * F.val (from num(4)) = 2 * 4 = 8...

See on Wikiteka »

EF3333

• The term “ money market ” is a misnomer. Money (currency) is not actually traded in the money markets. • The securities in the money market are short term with

high liquidity; therefore, they are close to being money.

Money Markets Defined 1. Usually sold in large denominations ($1,000,000 or

more) 2. Low default risk3. Mature in one year or less from their issue date,  although most mature in less than 120 days

• The banking industry should handle the needs for short - term. • Banks...

See on Student Notes »

MOD 4 RTOS

Az97zFmE70asAAAAAElFTkSuQmCC



An Adaptive Cruise Control (ACC) system is an advanced driver assistance feature that automatically adjusts the vehicle's speed to maintain a safe distance from vehicles ahead.
An RTOS is essential in ACC because it ensures real-time responsiveness, predictability, and multi-tasking for critical automotive functions like sensor reading, data processing, control signal generation, and actuator management.


Requirement Table for ACC System

Requirement Details
Real-time sensing Radar/Lidar
...

See on Wikiteka »

RTOS MOD3

A semaphore is a signaling mechanism used to manage access to shared resources in multitasking systems like RTOS. It ensures that only one task or a limited number of tasks can access a critical resource at a time, preventing issues like race conditions, data corruption, deadlocks, and inconsistent behavior.

When multiple tasks try to access a common resource, semaphores help synchronize their operations by:

Making a task wait if the resource is busy.

Allowing access when the resource becomes free.

...

See on Wikiteka »

GEA1000

PPDAC Cycle (Data Problem-Solving Framework)

  • Problem: What are you trying to solve? Clearly define your research question.

  • Plan: How will you collect data? Choose a sampling method & variables.

  • Data: Collect and clean data (e.g., remove errors, handle missing values).

  • Analysis: Use EDA (plots & stats) and model the relationships (e.g., regression).

  • Conclusion: Answer your research question. Be careful about generalizing!


Sampling Methods

Method Description Pros Cons
...

See on Student Notes »