'2021/02/25'에 해당되는 글 2건

  1. 2021.02.25 tensorflow 용어 정의
  2. 2021.02.25 'xterm': unknown terminal type.

공식적으로 정리된 용어집이 없냐!!!!

 

모델은 텐서가 먼가를 연산하는 함수 기능?

A model is, abstractly:

A function that computes something on tensors (a forward pass) Some variables that can be updated in response to training

[링크 : http://www.tensorflow.org/guide/intro_to_graphs]

 

그래프는 tf.Operation 객체의 집합을 포함하는 데이터 구조

Graphs are data structures that contain a set of tf.Operation objects, which represent units of computation; and tf.Tensor objects, which represent the units of data that flow between operations

[링크 : http://www.tensorflow.org/guide/intro_to_modules]

 

체크포인트는 모델에 의해서 사용되는 모든 패러미터의 정확한 값을 캡쳐한다.

Checkpoints capture the exact value of all parameters (tf.Variable objects) used by a model. Checkpoints do not contain any description of the computation defined by the model and thus are typically only useful when source code that will use the saved parameter values is available.

[링크 : http://www.tensorflow.org/guide/checkpoint]

[링크 : http://www.tensorflow.org/guide/saved_model]

 

 

Posted by 구차니
Linux2021. 2. 25. 12:12

$ clear
'xterm': unknown terminal type.

 

갑자기 clear가 안되서 찾아보니 여러가지가 나오는데 

export TERM=xterm은 나에게는 효과가 없었고 vt100으로 해주니 효과가 있었다.

근데 이거 하면 clear가 안된다?! 도대체 어떻게 해야하지 ㅠㅠ

export TERM=vt100

[링크 : https://bluebam.tistory.com/entry/STB에서-top이-안먹힐때]

 

$ env | grep TERM
TERM=xterm

'Linux' 카테고리의 다른 글

watch 복수개 명령어 실행하기  (0) 2021.03.08
원격실행된 python/opencv 키 입력  (0) 2021.02.26
tar with pigz  (0) 2021.02.23
grep regexp match list  (0) 2021.02.22
리눅스 스마트 카드 api  (0) 2021.02.02
Posted by 구차니