네이버 영어사전 정의
1. (원자재식품 등을) 가공[처리]하다
2. (문서요청 사항 등을 공식적으로) 처리하다
3. (컴퓨터에서 데이터를) 처리하다
4. 행진하다, (행진하듯이) 천천히 걷다[이동하다]
캠브릿지 영영사전 정의
1. to deal with documents in an official way
2. If a computer processes information, it performs a particular series of operations on the information,
such as a set of calculations.
3. to prepare, change, or treat food or natural substances as a part of an industrial operation
4. to think about a difficult or sad situation so that you can gradually accept it
5. to make pictures from photographic film
6. to walk slowly
7. to deal with something according to a particular set of actions
8. If a computer processes information, it performs a series of operations on it.
9. To process food or raw materials is to prepare, change, or treat them as part of an industrial operation.
10. to chage raw materials, for example by adding chemicals or other substances to them,
as part of the production of goods
11. to deal with documents in an official way
12. if a computer processes data, it uses a set of instructions to organize it and produce a particular result
12가지 정의들을 관통하는 하나의 에센스를 찾기 위해
12가지 정의들을 명상해보자.
Process의 에센스는 다음과 같다.
Process : action -> action -> $\cdot \cdot \cdot$ -> action -> action
네이버 영어사전의 예문들을 보자.
1. (원자재식품 등을) 가공[처리]하다
Most of the food we buy is processed in some way.
편의점에서 살 수 있는 음식 중 치토스를 예로 들어보자.
공장에서 치토스의 원재료는 수많은 action들을 거쳐 치토스가 된다.
공장 생산라인에서의 수 많은 action들의 시간적 나열은 가공이다.
2. (문서요청 사항 등을 공식적으로) 처리하다
It will take a week for your application to be processed.
문서가 제출되는 것[action] -> 말단 직원이 문서를 검토하는 것[action]
-> 담당자에게 문서가 이동하는 것[action] -> 담당자가 문서에 싸인을 하거나 도장을 찍는 것[action]
3. (컴퓨터에서 데이터를) 처리하다
네이버에 예문이 없어 직접 설명한다.
다음은 ChatGPT를 통해 생성한 VAE class python 코드이다.

코드의 한 줄 한 줄이 instruction이고
vae = VAE(784, 128)이라는 instruction을 추가하면
vae라는 instance가 생성되고

이 instruction들이 순서대로 실행되고
result = vae(x)라는 instruction을 추가하면
VAE클래스의 foward method가 실행되서

foward함수의 instruction이 순서대로 실행되면
encode method
reparameterize method
decode method가 순서대로 실행되어


최종적으로 encode method의 출력값인
mean과 logvar와
decode method의 출력값인
x_recon을 리턴하여
result = vae(x)에서
result라는 변수에 저장한다.
이와같이 instruction을 순서대로 실행하는 action들의 시간적 나열을 process라고 한다.
4. 행진하다, (행진하듯이) 천천히
걷다[이동하다]
네이버 영어사전에 예문이 없어
캠브릿지 영영사전 예문을 본다.
We watched them process down the aisle. (aisle : 통로)
극장의 통로를 따라 좌석 번호를 확인하며
한 걸음(action) -> 한 걸음(action)경사로를 따라 내려가는 action들의 나열을 process라고 할 수 있다.