TensorFlow
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
TensorFlow 런타임을 설명하는 정적 유틸리티 메서드입니다.
공개 방법
정적 바이트[] | loadLibrary (문자열 파일 이름) filename에 동적 라이브러리를 로드하고 해당 라이브러리에 있는 작업과 커널을 등록합니다. |
정적 바이트[] | 등록된OpList () 이 주소 공간에서 모든 TensorFlow 작업을 사용할 수 있습니다. |
정적 문자열 | 버전 () 기본 TensorFlow 런타임의 버전을 반환합니다. |
상속된 메서드
java.lang.Object 클래스에서 부울 | 같음 (개체 arg0) |
마지막 수업<?> | getClass () |
정수 | 해시 코드 () |
최종 무효 | 알림 () |
최종 무효 | 통지모두 () |
끈 | toString () |
최종 무효 | 대기 (long arg0, int arg1) |
최종 무효 | 기다리세요 (긴 arg0) |
최종 무효 | 기다리다 () |
공개 방법
public static byte[] loadLibrary (문자열 파일 이름)
filename에 동적 라이브러리를 로드하고 해당 라이브러리에 있는 작업과 커널을 등록합니다.
매개변수
파일 이름 | 로드할 작업과 커널이 포함된 동적 라이브러리의 경로입니다. |
---|
보고
- 라이브러리에 정의된 작업을 정의하는 OpList 프로토콜 버퍼 메시지의 직렬화된 바이트입니다.
던지기
불만족링크오류 | 파일 이름을 로드할 수 없는 경우. |
---|
공개 정적 바이트[] 등록OpList ()
이 주소 공간에서 모든 TensorFlow 작업을 사용할 수 있습니다.
보고
- 사용 가능한 모든 TensorFlow 작업을 나열하는 OpList 프로토콜 버퍼의 직렬화된 표현입니다.
공개 정적 문자열 버전 ()
기본 TensorFlow 런타임의 버전을 반환합니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 크리에이티브 커먼즈 저작자 표시 라이선스 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다. 일부 콘텐츠에는 Numpy 라이선스가 부여됩니다.
최종 업데이트: 2025-07-28(UTC)
[null,null,["최종 업데이트: 2025-07-28(UTC)"],[],[],null,["# TensorFlow\n\npublic final class **TensorFlow** \n\nStatic utility methods describing the TensorFlow runtime. \n\n### Public Methods\n\n|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| static byte\\[\\] | [loadLibrary](/versions/r2.6/api_docs/java/org/tensorflow/TensorFlow#loadLibrary(java.lang.String)) (String filename) Load the dynamic library in filename and register the operations and kernels present in that library. |\n| static byte\\[\\] | [registeredOpList](/versions/r2.6/api_docs/java/org/tensorflow/TensorFlow#registeredOpList()) () All the TensorFlow operations available in this address space. |\n| static String | [version](/versions/r2.6/api_docs/java/org/tensorflow/TensorFlow#version()) () Returns the version of the underlying TensorFlow runtime. |\n\n### Inherited Methods\n\nFrom class java.lang.Object \n\n|------------------|----------------------------|\n| boolean | equals (Object arg0) |\n| final Class\\\u003c?\\\u003e | getClass () |\n| int | hashCode () |\n| final void | notify () |\n| final void | notifyAll () |\n| String | toString () |\n| final void | wait (long arg0, int arg1) |\n| final void | wait (long arg0) |\n| final void | wait () |\n\nPublic Methods\n--------------\n\n\n#### public static byte\\[\\]\n**loadLibrary**\n(String filename)\n\n\nLoad the dynamic library in filename and register the operations and kernels present in that\nlibrary. \n\n##### Parameters\n\n| filename | Path of the dynamic library containing operations and kernels to load. |\n|----------|------------------------------------------------------------------------|\n\n##### Returns\n\n- Serialized bytes of the [OpList](https://www.tensorflow.org/code/tensorflow/core/framework/op_def.proto) protocol buffer message defining the operations defined in the library. \n\n##### Throws\n\n| UnsatisfiedLinkError | if filename cannot be loaded. |\n|----------------------|-------------------------------|\n\n\n#### public static byte\\[\\]\n**registeredOpList**\n()\n\n\nAll the TensorFlow operations available in this address space. \n\n##### Returns\n\n- A serialized representation of an [OpList](https://www.tensorflow.org/code/tensorflow/core/framework/op_def.proto) protocol buffer, which lists all the available TensorFlow operations.\n\n#### public static String\n**version**\n()\n\n\nReturns the version of the underlying TensorFlow runtime."]]