We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d639294 commit 83a6149Copy full SHA for 83a6149
examples/prediction/README.md
@@ -0,0 +1,10 @@
1
+# Running torchrec with torchx using Ray scheduler on a Ray cluster
2
+
3
+```
4
+pip install --pre torchrec -f https://download.pytorch.org/whl/torchrec/index.html
5
6
7
+run locally
8
9
+python3 predict_using_torchrec.py
10
examples/prediction/__init__.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python3
+# Copyright (c) Meta Platforms, Inc. and affiliates.
+# All rights reserved.
+#
+# This source code is licensed under the BSD-style license found in the
+# LICENSE file in the root directory of this source tree.
+# pyre-strict
11
+def main() -> None:
12
+ """DOC_STRING"""
13
14
15
+if __name__ == "__main__":
16
+ main()
0 commit comments