JinghuiLuAstronaut commited on
Commit
2592dfb
·
verified ·
1 Parent(s): 80d2fe8

Add files using upload-large-folder tool

Browse files
Files changed (20) hide show
  1. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/array_like.pyi +16 -0
  2. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/arrayprint.pyi +14 -0
  3. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/char.pyi +66 -0
  4. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/chararray.pyi +62 -0
  5. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/constants.pyi +7 -0
  6. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/flatiter.pyi +25 -0
  7. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  8. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  9. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/multiarray.pyi +55 -0
  10. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/ndarray_misc.pyi +43 -0
  11. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
  12. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/rec.pyi +17 -0
  13. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/scalars.pyi +92 -0
  14. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  15. LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/twodim_base.pyi +37 -0
  16. LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/decode64_uniform_20260610/mn0p8.log +13 -0
  17. LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_100k_decode64_ema_20260611/run.log +122 -0
  18. LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr2e3.log +29 -0
  19. LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr3e3.log +29 -0
  20. LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr4e3.log +29 -0
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/array_like.pyi ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ from numpy._typing import ArrayLike
3
+
4
+
5
+ class A:
6
+ pass
7
+
8
+
9
+ x1: ArrayLike = (i for i in range(10)) # E: Incompatible types in assignment
10
+ x2: ArrayLike = A() # E: Incompatible types in assignment
11
+ x3: ArrayLike = {1: "foo", 2: "bar"} # E: Incompatible types in assignment
12
+
13
+ scalar = np.int64(1)
14
+ scalar.__array__(dtype=np.float64) # E: No overload variant
15
+ array = np.array([1])
16
+ array.__array__(dtype=np.float64) # E: No overload variant
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/arrayprint.pyi ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from collections.abc import Callable
2
+ from typing import Any
3
+ import numpy as np
4
+
5
+ AR: np.ndarray
6
+ func1: Callable[[Any], str]
7
+ func2: Callable[[np.integer[Any]], str]
8
+
9
+ np.array2string(AR, style=None) # E: Unexpected keyword argument
10
+ np.array2string(AR, legacy="1.14") # E: incompatible type
11
+ np.array2string(AR, sign="*") # E: incompatible type
12
+ np.array2string(AR, floatmode="default") # E: incompatible type
13
+ np.array2string(AR, formatter={"A": func1}) # E: incompatible type
14
+ np.array2string(AR, formatter={"float": func2}) # E: Incompatible types
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/char.pyi ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import numpy.typing as npt
3
+
4
+ AR_U: npt.NDArray[np.str_]
5
+ AR_S: npt.NDArray[np.bytes_]
6
+
7
+ np.char.equal(AR_U, AR_S) # E: incompatible type
8
+
9
+ np.char.not_equal(AR_U, AR_S) # E: incompatible type
10
+
11
+ np.char.greater_equal(AR_U, AR_S) # E: incompatible type
12
+
13
+ np.char.less_equal(AR_U, AR_S) # E: incompatible type
14
+
15
+ np.char.greater(AR_U, AR_S) # E: incompatible type
16
+
17
+ np.char.less(AR_U, AR_S) # E: incompatible type
18
+
19
+ np.char.encode(AR_S) # E: incompatible type
20
+ np.char.decode(AR_U) # E: incompatible type
21
+
22
+ np.char.join(AR_U, b"_") # E: incompatible type
23
+ np.char.join(AR_S, "_") # E: incompatible type
24
+
25
+ np.char.ljust(AR_U, 5, fillchar=b"a") # E: incompatible type
26
+ np.char.ljust(AR_S, 5, fillchar="a") # E: incompatible type
27
+ np.char.rjust(AR_U, 5, fillchar=b"a") # E: incompatible type
28
+ np.char.rjust(AR_S, 5, fillchar="a") # E: incompatible type
29
+
30
+ np.char.lstrip(AR_U, chars=b"a") # E: incompatible type
31
+ np.char.lstrip(AR_S, chars="a") # E: incompatible type
32
+ np.char.strip(AR_U, chars=b"a") # E: incompatible type
33
+ np.char.strip(AR_S, chars="a") # E: incompatible type
34
+ np.char.rstrip(AR_U, chars=b"a") # E: incompatible type
35
+ np.char.rstrip(AR_S, chars="a") # E: incompatible type
36
+
37
+ np.char.partition(AR_U, b"a") # E: incompatible type
38
+ np.char.partition(AR_S, "a") # E: incompatible type
39
+ np.char.rpartition(AR_U, b"a") # E: incompatible type
40
+ np.char.rpartition(AR_S, "a") # E: incompatible type
41
+
42
+ np.char.replace(AR_U, b"_", b"-") # E: incompatible type
43
+ np.char.replace(AR_S, "_", "-") # E: incompatible type
44
+
45
+ np.char.split(AR_U, b"_") # E: incompatible type
46
+ np.char.split(AR_S, "_") # E: incompatible type
47
+ np.char.rsplit(AR_U, b"_") # E: incompatible type
48
+ np.char.rsplit(AR_S, "_") # E: incompatible type
49
+
50
+ np.char.count(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
51
+ np.char.count(AR_S, "a", end=9) # E: incompatible type
52
+
53
+ np.char.endswith(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
54
+ np.char.endswith(AR_S, "a", end=9) # E: incompatible type
55
+ np.char.startswith(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
56
+ np.char.startswith(AR_S, "a", end=9) # E: incompatible type
57
+
58
+ np.char.find(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
59
+ np.char.find(AR_S, "a", end=9) # E: incompatible type
60
+ np.char.rfind(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
61
+ np.char.rfind(AR_S, "a", end=9) # E: incompatible type
62
+
63
+ np.char.index(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
64
+ np.char.index(AR_S, "a", end=9) # E: incompatible type
65
+ np.char.rindex(AR_U, b"a", start=[1, 2, 3]) # E: incompatible type
66
+ np.char.rindex(AR_S, "a", end=9) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/chararray.pyi ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ from typing import Any
3
+
4
+ AR_U: np.chararray[Any, np.dtype[np.str_]]
5
+ AR_S: np.chararray[Any, np.dtype[np.bytes_]]
6
+
7
+ AR_S.encode() # E: Invalid self argument
8
+ AR_U.decode() # E: Invalid self argument
9
+
10
+ AR_U.join(b"_") # E: incompatible type
11
+ AR_S.join("_") # E: incompatible type
12
+
13
+ AR_U.ljust(5, fillchar=b"a") # E: incompatible type
14
+ AR_S.ljust(5, fillchar="a") # E: incompatible type
15
+ AR_U.rjust(5, fillchar=b"a") # E: incompatible type
16
+ AR_S.rjust(5, fillchar="a") # E: incompatible type
17
+
18
+ AR_U.lstrip(chars=b"a") # E: incompatible type
19
+ AR_S.lstrip(chars="a") # E: incompatible type
20
+ AR_U.strip(chars=b"a") # E: incompatible type
21
+ AR_S.strip(chars="a") # E: incompatible type
22
+ AR_U.rstrip(chars=b"a") # E: incompatible type
23
+ AR_S.rstrip(chars="a") # E: incompatible type
24
+
25
+ AR_U.partition(b"a") # E: incompatible type
26
+ AR_S.partition("a") # E: incompatible type
27
+ AR_U.rpartition(b"a") # E: incompatible type
28
+ AR_S.rpartition("a") # E: incompatible type
29
+
30
+ AR_U.replace(b"_", b"-") # E: incompatible type
31
+ AR_S.replace("_", "-") # E: incompatible type
32
+
33
+ AR_U.split(b"_") # E: incompatible type
34
+ AR_S.split("_") # E: incompatible type
35
+ AR_S.split(1) # E: incompatible type
36
+ AR_U.rsplit(b"_") # E: incompatible type
37
+ AR_S.rsplit("_") # E: incompatible type
38
+
39
+ AR_U.count(b"a", start=[1, 2, 3]) # E: incompatible type
40
+ AR_S.count("a", end=9) # E: incompatible type
41
+
42
+ AR_U.endswith(b"a", start=[1, 2, 3]) # E: incompatible type
43
+ AR_S.endswith("a", end=9) # E: incompatible type
44
+ AR_U.startswith(b"a", start=[1, 2, 3]) # E: incompatible type
45
+ AR_S.startswith("a", end=9) # E: incompatible type
46
+
47
+ AR_U.find(b"a", start=[1, 2, 3]) # E: incompatible type
48
+ AR_S.find("a", end=9) # E: incompatible type
49
+ AR_U.rfind(b"a", start=[1, 2, 3]) # E: incompatible type
50
+ AR_S.rfind("a", end=9) # E: incompatible type
51
+
52
+ AR_U.index(b"a", start=[1, 2, 3]) # E: incompatible type
53
+ AR_S.index("a", end=9) # E: incompatible type
54
+ AR_U.rindex(b"a", start=[1, 2, 3]) # E: incompatible type
55
+ AR_S.rindex("a", end=9) # E: incompatible type
56
+
57
+ AR_U == AR_S # E: Unsupported operand types
58
+ AR_U != AR_S # E: Unsupported operand types
59
+ AR_U >= AR_S # E: Unsupported operand types
60
+ AR_U <= AR_S # E: Unsupported operand types
61
+ AR_U > AR_S # E: Unsupported operand types
62
+ AR_U < AR_S # E: Unsupported operand types
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/constants.pyi ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+
3
+ np.Inf = np.Inf # E: Cannot assign to final
4
+ np.ALLOW_THREADS = np.ALLOW_THREADS # E: Cannot assign to final
5
+ np.little_endian = np.little_endian # E: Cannot assign to final
6
+ np.UFUNC_PYVALS_NAME = "bob" # E: Incompatible types
7
+ np.CLIP = 2 # E: Incompatible types
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/flatiter.pyi ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any
2
+
3
+ import numpy as np
4
+ from numpy._typing import _SupportsArray
5
+
6
+
7
+ class Index:
8
+ def __index__(self) -> int:
9
+ ...
10
+
11
+
12
+ a: "np.flatiter[np.ndarray]"
13
+ supports_array: _SupportsArray
14
+
15
+ a.base = Any # E: Property "base" defined in "flatiter" is read-only
16
+ a.coords = Any # E: Property "coords" defined in "flatiter" is read-only
17
+ a.index = Any # E: Property "index" defined in "flatiter" is read-only
18
+ a.copy(order='C') # E: Unexpected keyword argument
19
+
20
+ # NOTE: Contrary to `ndarray.__getitem__` its counterpart in `flatiter`
21
+ # does not accept objects with the `__array__` or `__index__` protocols;
22
+ # boolean indexing is just plain broken (gh-17175)
23
+ a[np.bool_()] # E: No overload variant of "__getitem__"
24
+ a[Index()] # E: No overload variant of "__getitem__"
25
+ a[supports_array] # E: No overload variant of "__getitem__"
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/index_tricks.pyi ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+
3
+ AR_LIKE_i: list[int]
4
+ AR_LIKE_f: list[float]
5
+
6
+ np.ndindex([1, 2, 3]) # E: No overload variant
7
+ np.unravel_index(AR_LIKE_f, (1, 2, 3)) # E: incompatible type
8
+ np.ravel_multi_index(AR_LIKE_i, (1, 2, 3), mode="bob") # E: No overload variant
9
+ np.mgrid[1] # E: Invalid index type
10
+ np.mgrid[...] # E: Invalid index type
11
+ np.ogrid[1] # E: Invalid index type
12
+ np.ogrid[...] # E: Invalid index type
13
+ np.fill_diagonal(AR_LIKE_f, 2) # E: incompatible type
14
+ np.diag_indices(1.0) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/lib_version.pyi ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from numpy.lib import NumpyVersion
2
+
3
+ version: NumpyVersion
4
+
5
+ NumpyVersion(b"1.8.0") # E: incompatible type
6
+ version >= b"1.8.0" # E: Unsupported operand types
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/multiarray.pyi ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import numpy.typing as npt
3
+
4
+ i8: np.int64
5
+
6
+ AR_b: npt.NDArray[np.bool_]
7
+ AR_u1: npt.NDArray[np.uint8]
8
+ AR_i8: npt.NDArray[np.int64]
9
+ AR_f8: npt.NDArray[np.float64]
10
+ AR_M: npt.NDArray[np.datetime64]
11
+
12
+ M: np.datetime64
13
+
14
+ AR_LIKE_f: list[float]
15
+
16
+ def func(a: int) -> None: ...
17
+
18
+ np.where(AR_b, 1) # E: No overload variant
19
+
20
+ np.can_cast(AR_f8, 1) # E: incompatible type
21
+
22
+ np.vdot(AR_M, AR_M) # E: incompatible type
23
+
24
+ np.copyto(AR_LIKE_f, AR_f8) # E: incompatible type
25
+
26
+ np.putmask(AR_LIKE_f, [True, True, False], 1.5) # E: incompatible type
27
+
28
+ np.packbits(AR_f8) # E: incompatible type
29
+ np.packbits(AR_u1, bitorder=">") # E: incompatible type
30
+
31
+ np.unpackbits(AR_i8) # E: incompatible type
32
+ np.unpackbits(AR_u1, bitorder=">") # E: incompatible type
33
+
34
+ np.shares_memory(1, 1, max_work=i8) # E: incompatible type
35
+ np.may_share_memory(1, 1, max_work=i8) # E: incompatible type
36
+
37
+ np.arange(M) # E: No overload variant
38
+ np.arange(stop=10) # E: No overload variant
39
+
40
+ np.datetime_data(int) # E: incompatible type
41
+
42
+ np.busday_offset("2012", 10) # E: No overload variant
43
+
44
+ np.datetime_as_string("2012") # E: No overload variant
45
+
46
+ np.compare_chararrays("a", b"a", "==", False) # E: No overload variant
47
+
48
+ np.add_docstring(func, None) # E: incompatible type
49
+
50
+ np.nested_iters([AR_i8, AR_i8]) # E: Missing positional argument
51
+ np.nested_iters([AR_i8, AR_i8], 0) # E: incompatible type
52
+ np.nested_iters([AR_i8, AR_i8], [0]) # E: incompatible type
53
+ np.nested_iters([AR_i8, AR_i8], [[0], [1]], flags=["test"]) # E: incompatible type
54
+ np.nested_iters([AR_i8, AR_i8], [[0], [1]], op_flags=[["test"]]) # E: incompatible type
55
+ np.nested_iters([AR_i8, AR_i8], [[0], [1]], buffersize=1.0) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/ndarray_misc.pyi ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Tests for miscellaneous (non-magic) ``np.ndarray``/``np.generic`` methods.
3
+
4
+ More extensive tests are performed for the methods'
5
+ function-based counterpart in `../from_numeric.py`.
6
+
7
+ """
8
+
9
+ from typing import Any
10
+ import numpy as np
11
+
12
+ f8: np.float64
13
+ AR_f8: np.ndarray[Any, np.dtype[np.float64]]
14
+ AR_M: np.ndarray[Any, np.dtype[np.datetime64]]
15
+ AR_b: np.ndarray[Any, np.dtype[np.bool_]]
16
+
17
+ ctypes_obj = AR_f8.ctypes
18
+
19
+ reveal_type(ctypes_obj.get_data()) # E: has no attribute
20
+ reveal_type(ctypes_obj.get_shape()) # E: has no attribute
21
+ reveal_type(ctypes_obj.get_strides()) # E: has no attribute
22
+ reveal_type(ctypes_obj.get_as_parameter()) # E: has no attribute
23
+
24
+ f8.argpartition(0) # E: has no attribute
25
+ f8.diagonal() # E: has no attribute
26
+ f8.dot(1) # E: has no attribute
27
+ f8.nonzero() # E: has no attribute
28
+ f8.partition(0) # E: has no attribute
29
+ f8.put(0, 2) # E: has no attribute
30
+ f8.setfield(2, np.float64) # E: has no attribute
31
+ f8.sort() # E: has no attribute
32
+ f8.trace() # E: has no attribute
33
+
34
+ AR_M.__int__() # E: Invalid self argument
35
+ AR_M.__float__() # E: Invalid self argument
36
+ AR_M.__complex__() # E: Invalid self argument
37
+ AR_b.__index__() # E: Invalid self argument
38
+
39
+ AR_f8[1.5] # E: No overload variant
40
+ AR_f8["field_a"] # E: No overload variant
41
+ AR_f8[["field_a", "field_b"]] # E: Invalid index type
42
+
43
+ AR_f8.__array_finalize__(object()) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/nested_sequence.pyi ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from collections.abc import Sequence
2
+ from numpy._typing import _NestedSequence
3
+
4
+ a: Sequence[float]
5
+ b: list[complex]
6
+ c: tuple[str, ...]
7
+ d: int
8
+ e: str
9
+
10
+ def func(a: _NestedSequence[int]) -> None:
11
+ ...
12
+
13
+ reveal_type(func(a)) # E: incompatible type
14
+ reveal_type(func(b)) # E: incompatible type
15
+ reveal_type(func(c)) # E: incompatible type
16
+ reveal_type(func(d)) # E: incompatible type
17
+ reveal_type(func(e)) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/rec.pyi ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import numpy.typing as npt
3
+
4
+ AR_i8: npt.NDArray[np.int64]
5
+
6
+ np.rec.fromarrays(1) # E: No overload variant
7
+ np.rec.fromarrays([1, 2, 3], dtype=[("f8", "f8")], formats=["f8", "f8"]) # E: No overload variant
8
+
9
+ np.rec.fromrecords(AR_i8) # E: incompatible type
10
+ np.rec.fromrecords([(1.5,)], dtype=[("f8", "f8")], formats=["f8", "f8"]) # E: No overload variant
11
+
12
+ np.rec.fromstring("string", dtype=[("f8", "f8")]) # E: No overload variant
13
+ np.rec.fromstring(b"bytes") # E: No overload variant
14
+ np.rec.fromstring(b"(1.5,)", dtype=[("f8", "f8")], formats=["f8", "f8"]) # E: No overload variant
15
+
16
+ with open("test", "r") as f:
17
+ np.rec.fromfile(f, dtype=[("f8", "f8")]) # E: No overload variant
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/scalars.pyi ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ import numpy as np
3
+
4
+ f2: np.float16
5
+ f8: np.float64
6
+ c8: np.complex64
7
+
8
+ # Construction
9
+
10
+ np.float32(3j) # E: incompatible type
11
+
12
+ # Technically the following examples are valid NumPy code. But they
13
+ # are not considered a best practice, and people who wish to use the
14
+ # stubs should instead do
15
+ #
16
+ # np.array([1.0, 0.0, 0.0], dtype=np.float32)
17
+ # np.array([], dtype=np.complex64)
18
+ #
19
+ # See e.g. the discussion on the mailing list
20
+ #
21
+ # https://mail.python.org/pipermail/numpy-discussion/2020-April/080566.html
22
+ #
23
+ # and the issue
24
+ #
25
+ # https://github.com/numpy/numpy-stubs/issues/41
26
+ #
27
+ # for more context.
28
+ np.float32([1.0, 0.0, 0.0]) # E: incompatible type
29
+ np.complex64([]) # E: incompatible type
30
+
31
+ np.complex64(1, 2) # E: Too many arguments
32
+ # TODO: protocols (can't check for non-existent protocols w/ __getattr__)
33
+
34
+ np.datetime64(0) # E: No overload variant
35
+
36
+ class A:
37
+ def __float__(self):
38
+ return 1.0
39
+
40
+
41
+ np.int8(A()) # E: incompatible type
42
+ np.int16(A()) # E: incompatible type
43
+ np.int32(A()) # E: incompatible type
44
+ np.int64(A()) # E: incompatible type
45
+ np.uint8(A()) # E: incompatible type
46
+ np.uint16(A()) # E: incompatible type
47
+ np.uint32(A()) # E: incompatible type
48
+ np.uint64(A()) # E: incompatible type
49
+
50
+ np.void("test") # E: No overload variant
51
+ np.void("test", dtype=None) # E: No overload variant
52
+
53
+ np.generic(1) # E: Cannot instantiate abstract class
54
+ np.number(1) # E: Cannot instantiate abstract class
55
+ np.integer(1) # E: Cannot instantiate abstract class
56
+ np.inexact(1) # E: Cannot instantiate abstract class
57
+ np.character("test") # E: Cannot instantiate abstract class
58
+ np.flexible(b"test") # E: Cannot instantiate abstract class
59
+
60
+ np.float64(value=0.0) # E: Unexpected keyword argument
61
+ np.int64(value=0) # E: Unexpected keyword argument
62
+ np.uint64(value=0) # E: Unexpected keyword argument
63
+ np.complex128(value=0.0j) # E: Unexpected keyword argument
64
+ np.str_(value='bob') # E: No overload variant
65
+ np.bytes_(value=b'test') # E: No overload variant
66
+ np.void(value=b'test') # E: No overload variant
67
+ np.bool_(value=True) # E: Unexpected keyword argument
68
+ np.datetime64(value="2019") # E: No overload variant
69
+ np.timedelta64(value=0) # E: Unexpected keyword argument
70
+
71
+ np.bytes_(b"hello", encoding='utf-8') # E: No overload variant
72
+ np.str_("hello", encoding='utf-8') # E: No overload variant
73
+
74
+ f8.item(1) # E: incompatible type
75
+ f8.item((0, 1)) # E: incompatible type
76
+ f8.squeeze(axis=1) # E: incompatible type
77
+ f8.squeeze(axis=(0, 1)) # E: incompatible type
78
+ f8.transpose(1) # E: incompatible type
79
+
80
+ def func(a: np.float32) -> None: ...
81
+
82
+ func(f2) # E: incompatible type
83
+ func(f8) # E: incompatible type
84
+
85
+ round(c8) # E: No overload variant
86
+
87
+ c8.__getnewargs__() # E: Invalid self argument
88
+ f2.__getnewargs__() # E: Invalid self argument
89
+ f2.hex() # E: Invalid self argument
90
+ np.float16.fromhex("0x0.0p+0") # E: Invalid self argument
91
+ f2.__trunc__() # E: Invalid self argument
92
+ f2.__getformat__("float") # E: Invalid self argument
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/shape_base.pyi ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+
3
+ class DTypeLike:
4
+ dtype: np.dtype[np.int_]
5
+
6
+ dtype_like: DTypeLike
7
+
8
+ np.expand_dims(dtype_like, (5, 10)) # E: No overload variant
LTA_openwebtext_dualt/mini_owt_logdirichlet/.venv_qwen35_uv/lib/python3.12/site-packages/numpy/typing/tests/data/fail/twodim_base.pyi ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any, TypeVar
2
+
3
+ import numpy as np
4
+ import numpy.typing as npt
5
+
6
+
7
+ def func1(ar: npt.NDArray[Any], a: int) -> npt.NDArray[np.str_]:
8
+ pass
9
+
10
+
11
+ def func2(ar: npt.NDArray[Any], a: float) -> float:
12
+ pass
13
+
14
+
15
+ AR_b: npt.NDArray[np.bool_]
16
+ AR_m: npt.NDArray[np.timedelta64]
17
+
18
+ AR_LIKE_b: list[bool]
19
+
20
+ np.eye(10, M=20.0) # E: No overload variant
21
+ np.eye(10, k=2.5, dtype=int) # E: No overload variant
22
+
23
+ np.diag(AR_b, k=0.5) # E: No overload variant
24
+ np.diagflat(AR_b, k=0.5) # E: No overload variant
25
+
26
+ np.tri(10, M=20.0) # E: No overload variant
27
+ np.tri(10, k=2.5, dtype=int) # E: No overload variant
28
+
29
+ np.tril(AR_b, k=0.5) # E: No overload variant
30
+ np.triu(AR_b, k=0.5) # E: No overload variant
31
+
32
+ np.vander(AR_m) # E: incompatible type
33
+
34
+ np.histogram2d(AR_m) # E: No overload variant
35
+
36
+ np.mask_indices(10, func1) # E: incompatible type
37
+ np.mask_indices(10, func2, 10.5) # E: incompatible type
LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/decode64_uniform_20260610/mn0p8.log ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_8gpu_50ep_lr3e4_elfopt_t5embed_unfixed_norm_stateprobadd_selfcond_ce_fast_trainlogit_mn0p8_s1p0_20260604_231446/step_144000.pt
2
+ use_ema=0
3
+ step=144000
4
+ decode_steps=64
5
+ n=64 chunk_n=8 gpu=0
6
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260610
7
+ [2026-06-09T22:34:10+00:00] infer step=144000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260610/owt_t5_elftokenized_full_pow1_unfixed_norm_stateprobadd_selfcond_ce_fast_lr3e4_trainlogit_mn0p8_s1p0_uniform_step144000_sc1p0_decode64_n64
8
+ [2026-06-09T22:34:10+00:00] run decode=64 chunk=0 n=8 seed=123
9
+ [2026-06-09T22:34:20+00:00] done decode=64 chunk=0
10
+ [2026-06-09T22:34:20+00:00] run decode=64 chunk=1 n=8 seed=124
11
+ [2026-06-09T22:34:30+00:00] done decode=64 chunk=1
12
+ [2026-06-09T22:34:30+00:00] run decode=64 chunk=2 n=8 seed=125
13
+ Terminated
LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_100k_decode64_ema_20260611/run.log ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [start] 2026-06-11T20:32:02+00:00
2
+ ===== infer lr1e3 step100000 ema decode64 =====
3
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr1e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260609_155046/step_100000.pt
4
+ use_ema=1
5
+ step=100000
6
+ decode_steps=64
7
+ n=64 chunk_n=8 gpu=0
8
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
9
+ [2026-06-11T20:32:02+00:00] infer step=100000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr1e3_ema0p9999_step100000_ema_sc1p0_decode64_n64
10
+ [2026-06-11T20:32:02+00:00] run decode=64 chunk=0 n=8 seed=123
11
+ [2026-06-11T20:32:12+00:00] done decode=64 chunk=0
12
+ [2026-06-11T20:32:12+00:00] run decode=64 chunk=1 n=8 seed=124
13
+ [2026-06-11T20:32:21+00:00] done decode=64 chunk=1
14
+ [2026-06-11T20:32:21+00:00] run decode=64 chunk=2 n=8 seed=125
15
+ [2026-06-11T20:32:30+00:00] done decode=64 chunk=2
16
+ [2026-06-11T20:32:30+00:00] run decode=64 chunk=3 n=8 seed=126
17
+ [2026-06-11T20:32:40+00:00] done decode=64 chunk=3
18
+ [2026-06-11T20:32:40+00:00] run decode=64 chunk=4 n=8 seed=127
19
+ [2026-06-11T20:32:49+00:00] done decode=64 chunk=4
20
+ [2026-06-11T20:32:49+00:00] run decode=64 chunk=5 n=8 seed=128
21
+ [2026-06-11T20:32:58+00:00] done decode=64 chunk=5
22
+ [2026-06-11T20:32:58+00:00] run decode=64 chunk=6 n=8 seed=129
23
+ [2026-06-11T20:33:07+00:00] done decode=64 chunk=6
24
+ [2026-06-11T20:33:07+00:00] run decode=64 chunk=7 n=8 seed=130
25
+ [2026-06-11T20:33:17+00:00] done decode=64 chunk=7
26
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr1e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
27
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
28
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
29
+ sc1p0 raw_full 12.880030884869694 4.81179280730984 0.042402125450436694 0.30940129178055 0.028766872289745313 60 60 63882 65492 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr1e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
30
+ sc1p0 pre_eos 13.858185752202955 4.825600567199701 0.043443559367126246 0.3170521769069454 0.029484029484029485 0 0 60663 63899 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr1e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
31
+ [2026-06-11T20:33:34+00:00] done
32
+ ===== infer lr2e3 step100000 ema decode64 =====
33
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr2e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260609_150828/step_100000.pt
34
+ use_ema=1
35
+ step=100000
36
+ decode_steps=64
37
+ n=64 chunk_n=8 gpu=0
38
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
39
+ [2026-06-11T20:33:34+00:00] infer step=100000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step100000_ema_sc1p0_decode64_n64
40
+ [2026-06-11T20:33:34+00:00] run decode=64 chunk=0 n=8 seed=123
41
+ [2026-06-11T20:33:44+00:00] done decode=64 chunk=0
42
+ [2026-06-11T20:33:44+00:00] run decode=64 chunk=1 n=8 seed=124
43
+ [2026-06-11T20:33:53+00:00] done decode=64 chunk=1
44
+ [2026-06-11T20:33:53+00:00] run decode=64 chunk=2 n=8 seed=125
45
+ [2026-06-11T20:34:02+00:00] done decode=64 chunk=2
46
+ [2026-06-11T20:34:02+00:00] run decode=64 chunk=3 n=8 seed=126
47
+ [2026-06-11T20:34:12+00:00] done decode=64 chunk=3
48
+ [2026-06-11T20:34:12+00:00] run decode=64 chunk=4 n=8 seed=127
49
+ [2026-06-11T20:34:21+00:00] done decode=64 chunk=4
50
+ [2026-06-11T20:34:21+00:00] run decode=64 chunk=5 n=8 seed=128
51
+ [2026-06-11T20:34:30+00:00] done decode=64 chunk=5
52
+ [2026-06-11T20:34:30+00:00] run decode=64 chunk=6 n=8 seed=129
53
+ [2026-06-11T20:34:39+00:00] done decode=64 chunk=6
54
+ [2026-06-11T20:34:39+00:00] run decode=64 chunk=7 n=8 seed=130
55
+ [2026-06-11T20:34:49+00:00] done decode=64 chunk=7
56
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
57
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
58
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
59
+ sc1p0 raw_full 15.020966667526707 4.930005594545835 0.05101884947911893 0.34946918200565186 0.029419851525982952 62 62 63244 65466 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
60
+ sc1p0 pre_eos 15.804223345637824 4.936913014643486 0.05194057711752353 0.35582726650488455 0.029960332892587694 0 0 60851 64285 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
61
+ [2026-06-11T20:35:02+00:00] done
62
+ ===== infer lr3e3 step100000 ema decode64 =====
63
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr3e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260609_230847/step_100000.pt
64
+ use_ema=1
65
+ step=100000
66
+ decode_steps=64
67
+ n=64 chunk_n=8 gpu=0
68
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
69
+ [2026-06-11T20:35:02+00:00] infer step=100000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step100000_ema_sc1p0_decode64_n64
70
+ [2026-06-11T20:35:02+00:00] run decode=64 chunk=0 n=8 seed=123
71
+ [2026-06-11T20:35:11+00:00] done decode=64 chunk=0
72
+ [2026-06-11T20:35:11+00:00] run decode=64 chunk=1 n=8 seed=124
73
+ [2026-06-11T20:35:21+00:00] done decode=64 chunk=1
74
+ [2026-06-11T20:35:21+00:00] run decode=64 chunk=2 n=8 seed=125
75
+ [2026-06-11T20:35:30+00:00] done decode=64 chunk=2
76
+ [2026-06-11T20:35:30+00:00] run decode=64 chunk=3 n=8 seed=126
77
+ [2026-06-11T20:35:39+00:00] done decode=64 chunk=3
78
+ [2026-06-11T20:35:39+00:00] run decode=64 chunk=4 n=8 seed=127
79
+ [2026-06-11T20:35:49+00:00] done decode=64 chunk=4
80
+ [2026-06-11T20:35:49+00:00] run decode=64 chunk=5 n=8 seed=128
81
+ [2026-06-11T20:35:58+00:00] done decode=64 chunk=5
82
+ [2026-06-11T20:35:58+00:00] run decode=64 chunk=6 n=8 seed=129
83
+ [2026-06-11T20:36:07+00:00] done decode=64 chunk=6
84
+ [2026-06-11T20:36:07+00:00] run decode=64 chunk=7 n=8 seed=130
85
+ [2026-06-11T20:36:17+00:00] done decode=64 chunk=7
86
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
87
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
88
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
89
+ sc1p0 raw_full 14.451369954479457 4.9862577567571655 0.060422683720717005 0.3806503866255081 0.02987515090389523 63 63 62795 65439 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
90
+ sc1p0 pre_eos 15.518518583335487 5.002311000448212 0.06179072748303999 0.3893048629890735 0.030559289711445274 0 0 59837 63974 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
91
+ [2026-06-11T20:36:30+00:00] done
92
+ ===== infer lr4e3 step100000 ema decode64 =====
93
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr4e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260610_020108/step_100000.pt
94
+ use_ema=1
95
+ step=100000
96
+ decode_steps=64
97
+ n=64 chunk_n=8 gpu=0
98
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
99
+ [2026-06-11T20:36:30+00:00] infer step=100000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step100000_ema_sc1p0_decode64_n64
100
+ [2026-06-11T20:36:30+00:00] run decode=64 chunk=0 n=8 seed=123
101
+ [2026-06-11T20:36:40+00:00] done decode=64 chunk=0
102
+ [2026-06-11T20:36:40+00:00] run decode=64 chunk=1 n=8 seed=124
103
+ [2026-06-11T20:36:49+00:00] done decode=64 chunk=1
104
+ [2026-06-11T20:36:49+00:00] run decode=64 chunk=2 n=8 seed=125
105
+ [2026-06-11T20:36:58+00:00] done decode=64 chunk=2
106
+ [2026-06-11T20:36:58+00:00] run decode=64 chunk=3 n=8 seed=126
107
+ [2026-06-11T20:37:07+00:00] done decode=64 chunk=3
108
+ [2026-06-11T20:37:07+00:00] run decode=64 chunk=4 n=8 seed=127
109
+ [2026-06-11T20:37:17+00:00] done decode=64 chunk=4
110
+ [2026-06-11T20:37:17+00:00] run decode=64 chunk=5 n=8 seed=128
111
+ [2026-06-11T20:37:27+00:00] done decode=64 chunk=5
112
+ [2026-06-11T20:37:27+00:00] run decode=64 chunk=6 n=8 seed=129
113
+ [2026-06-11T20:37:36+00:00] done decode=64 chunk=6
114
+ [2026-06-11T20:37:36+00:00] run decode=64 chunk=7 n=8 seed=130
115
+ [2026-06-11T20:37:45+00:00] done decode=64 chunk=7
116
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
117
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
118
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
119
+ sc1p0 raw_full 15.027804597572617 4.997110153704982 0.053348588863463005 0.3750934415475446 0.030022883295194508 62 62 63738 65550 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
120
+ sc1p0 pre_eos 16.51869751559537 5.017773161545052 0.05477992447390276 0.38520480115327965 0.0308372114887416 0 0 60243 63819 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step100000_ema_sc1p0_decode64_n64/sc1p0
121
+ [2026-06-11T20:37:58+00:00] done
122
+ [done] 2026-06-11T20:37:58+00:00
LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr2e3.log ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr2e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260609_150828/step_170000.pt
2
+ use_ema=1
3
+ step=170000
4
+ decode_steps=64
5
+ n=64 chunk_n=8 gpu=1
6
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
7
+ [2026-06-11T21:31:28+00:00] infer step=170000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step170000_ema_sc1p0_decode64_n64
8
+ [2026-06-11T21:31:28+00:00] run decode=64 chunk=0 n=8 seed=123
9
+ [2026-06-11T21:31:38+00:00] done decode=64 chunk=0
10
+ [2026-06-11T21:31:38+00:00] run decode=64 chunk=1 n=8 seed=124
11
+ [2026-06-11T21:31:48+00:00] done decode=64 chunk=1
12
+ [2026-06-11T21:31:48+00:00] run decode=64 chunk=2 n=8 seed=125
13
+ [2026-06-11T21:31:57+00:00] done decode=64 chunk=2
14
+ [2026-06-11T21:31:57+00:00] run decode=64 chunk=3 n=8 seed=126
15
+ [2026-06-11T21:32:07+00:00] done decode=64 chunk=3
16
+ [2026-06-11T21:32:07+00:00] run decode=64 chunk=4 n=8 seed=127
17
+ [2026-06-11T21:32:17+00:00] done decode=64 chunk=4
18
+ [2026-06-11T21:32:17+00:00] run decode=64 chunk=5 n=8 seed=128
19
+ [2026-06-11T21:32:27+00:00] done decode=64 chunk=5
20
+ [2026-06-11T21:32:27+00:00] run decode=64 chunk=6 n=8 seed=129
21
+ [2026-06-11T21:32:37+00:00] done decode=64 chunk=6
22
+ [2026-06-11T21:32:37+00:00] run decode=64 chunk=7 n=8 seed=130
23
+ [2026-06-11T21:32:47+00:00] done decode=64 chunk=7
24
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
25
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
26
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
27
+ sc1p0 raw_full 16.107294914622123 5.011115492296599 0.06065968937845177 0.38954916469601036 0.029048301955878316 63 63 63278 65546 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
28
+ sc1p0 pre_eos 17.04763156690045 5.02145464509798 0.06182151855423186 0.3970480737826026 0.029612118572894957 0 0 60749 64298 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr2e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
29
+ [2026-06-11T21:33:18+00:00] done
LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr3e3.log ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr3e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260609_230847/step_170000.pt
2
+ use_ema=1
3
+ step=170000
4
+ decode_steps=64
5
+ n=64 chunk_n=8 gpu=2
6
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
7
+ [2026-06-11T21:31:28+00:00] infer step=170000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step170000_ema_sc1p0_decode64_n64
8
+ [2026-06-11T21:31:28+00:00] run decode=64 chunk=0 n=8 seed=123
9
+ [2026-06-11T21:31:38+00:00] done decode=64 chunk=0
10
+ [2026-06-11T21:31:38+00:00] run decode=64 chunk=1 n=8 seed=124
11
+ [2026-06-11T21:31:48+00:00] done decode=64 chunk=1
12
+ [2026-06-11T21:31:48+00:00] run decode=64 chunk=2 n=8 seed=125
13
+ [2026-06-11T21:31:57+00:00] done decode=64 chunk=2
14
+ [2026-06-11T21:31:57+00:00] run decode=64 chunk=3 n=8 seed=126
15
+ [2026-06-11T21:32:07+00:00] done decode=64 chunk=3
16
+ [2026-06-11T21:32:07+00:00] run decode=64 chunk=4 n=8 seed=127
17
+ [2026-06-11T21:32:17+00:00] done decode=64 chunk=4
18
+ [2026-06-11T21:32:17+00:00] run decode=64 chunk=5 n=8 seed=128
19
+ [2026-06-11T21:32:27+00:00] done decode=64 chunk=5
20
+ [2026-06-11T21:32:27+00:00] run decode=64 chunk=6 n=8 seed=129
21
+ [2026-06-11T21:32:37+00:00] done decode=64 chunk=6
22
+ [2026-06-11T21:32:37+00:00] run decode=64 chunk=7 n=8 seed=130
23
+ [2026-06-11T21:32:47+00:00] done decode=64 chunk=7
24
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
25
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
26
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
27
+ sc1p0 raw_full 14.390963510069904 5.026241094135107 0.0661299685313617 0.3958692962221781 0.03244630472640616 64 64 62702 65462 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
28
+ sc1p0 pre_eos 15.472976560288648 5.043509630689692 0.06764719673642915 0.4049829628934946 0.03319839322277622 0 0 59711 63979 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr3e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
29
+ [2026-06-11T21:33:18+00:00] done
LTA_openwebtext_dualt/mini_owt_logdirichlet/logs/infer_not5_bottleneck128_170k_decode64_ema_20260611/lr4e3.log ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ checkpoint=runs/owt_t5_elftokenized_full_len1024_C1_to_1024_pow1_d768_l12_h12_gbs512_2x8gpu_50ep_lr4e3_ema0p9999_elfopt_not5_bottleneck128_unfixed_norm_stateprobadd_selfcond_ce_fast_20260610_020108/step_170000.pt
2
+ use_ema=1
3
+ step=170000
4
+ decode_steps=64
5
+ n=64 chunk_n=8 gpu=3
6
+ out_base=/e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611
7
+ [2026-06-11T21:31:28+00:00] infer step=170000 decode=64 -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step170000_ema_sc1p0_decode64_n64
8
+ [2026-06-11T21:31:28+00:00] run decode=64 chunk=0 n=8 seed=123
9
+ [2026-06-11T21:31:38+00:00] done decode=64 chunk=0
10
+ [2026-06-11T21:31:38+00:00] run decode=64 chunk=1 n=8 seed=124
11
+ [2026-06-11T21:31:48+00:00] done decode=64 chunk=1
12
+ [2026-06-11T21:31:48+00:00] run decode=64 chunk=2 n=8 seed=125
13
+ [2026-06-11T21:31:57+00:00] done decode=64 chunk=2
14
+ [2026-06-11T21:31:57+00:00] run decode=64 chunk=3 n=8 seed=126
15
+ [2026-06-11T21:32:07+00:00] done decode=64 chunk=3
16
+ [2026-06-11T21:32:07+00:00] run decode=64 chunk=4 n=8 seed=127
17
+ [2026-06-11T21:32:17+00:00] done decode=64 chunk=4
18
+ [2026-06-11T21:32:17+00:00] run decode=64 chunk=5 n=8 seed=128
19
+ [2026-06-11T21:32:27+00:00] done decode=64 chunk=5
20
+ [2026-06-11T21:32:27+00:00] run decode=64 chunk=6 n=8 seed=129
21
+ [2026-06-11T21:32:37+00:00] done decode=64 chunk=6
22
+ [2026-06-11T21:32:37+00:00] run decode=64 chunk=7 n=8 seed=130
23
+ [2026-06-11T21:32:47+00:00] done decode=64 chunk=7
24
+ merged 64 samples -> /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0/samples64.txt
25
+ loading scorer /e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard dtype=fp32 device=cuda
26
+ run kind ppl mean_entropy distinct_1 distinct_2 top_token_mass eos_rows eos_total ppl_tokens t5_tokens path
27
+ sc1p0 raw_full 14.597044361959108 5.002260665586616 0.06066111916940224 0.3883714538736373 0.02978853347583785 62 62 63394 65495 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
28
+ sc1p0 pre_eos 16.2067835260949 5.02648341843094 0.062407692549413946 0.39959148401288397 0.03065392954781133 0 0 59667 63646 /e2e-data/evad-tech-vla/wanghan58/workspace/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260611/owt_t5_not5_bottleneck128_norm_stateprobadd_selfcond_ce_fast_lr4e3_ema0p9999_step170000_ema_sc1p0_decode64_n64/sc1p0
29
+ [2026-06-11T21:33:18+00:00] done