├── 1607.03085v2.pdf ├── Makefile ├── README.md ├── cereal ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── doc │ ├── CMakeLists.txt │ ├── DoxygenLayout.xml │ ├── doxygen.in │ ├── footer.html │ └── mainpage.dox ├── include │ └── cereal │ │ ├── access.hpp │ │ ├── archives │ │ ├── adapters.hpp │ │ ├── binary.hpp │ │ ├── json.hpp │ │ ├── portable_binary.hpp │ │ └── xml.hpp │ │ ├── cereal.hpp │ │ ├── details │ │ ├── helpers.hpp │ │ ├── polymorphic_impl.hpp │ │ ├── polymorphic_impl_fwd.hpp │ │ ├── static_object.hpp │ │ ├── traits.hpp │ │ └── util.hpp │ │ ├── external │ │ ├── base64.hpp │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ └── rapidxml │ │ │ ├── license.txt │ │ │ ├── manual.html │ │ │ ├── rapidxml.hpp │ │ │ ├── rapidxml_iterators.hpp │ │ │ ├── rapidxml_print.hpp │ │ │ └── rapidxml_utils.hpp │ │ ├── macros.hpp │ │ └── types │ │ ├── array.hpp │ │ ├── base_class.hpp │ │ ├── bitset.hpp │ │ ├── boost_variant.hpp │ │ ├── chrono.hpp │ │ ├── common.hpp │ │ ├── complex.hpp │ │ ├── concepts │ │ └── pair_associative_container.hpp │ │ ├── deque.hpp │ │ ├── forward_list.hpp │ │ ├── functional.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── memory.hpp │ │ ├── polymorphic.hpp │ │ ├── queue.hpp │ │ ├── set.hpp │ │ ├── stack.hpp │ │ ├── string.hpp │ │ ├── tuple.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── valarray.hpp │ │ └── vector.hpp ├── sandbox │ ├── CMakeLists.txt │ ├── performance.cpp │ ├── sandbox.cpp │ ├── sandbox_json.cpp │ ├── sandbox_rtti.cpp │ ├── sandbox_shared_lib │ │ ├── CMakeLists.txt │ │ ├── base.cpp │ │ ├── base.hpp │ │ ├── derived.cpp │ │ └── derived.hpp │ └── sandbox_vs.cpp ├── scripts │ ├── add_rapidjson_prefix.sh │ ├── appveyor.bat │ ├── renameincludes.sh │ ├── updatecoverage.sh │ └── updatedoc.in ├── unittests │ ├── CMakeLists.txt │ ├── array.cpp │ ├── array.hpp │ ├── basic_string.cpp │ ├── basic_string.hpp │ ├── bitset.cpp │ ├── bitset.hpp │ ├── boost_variant.cpp │ ├── boost_variant.hpp │ ├── chrono.cpp │ ├── chrono.hpp │ ├── cmake-config-module.cmake │ ├── common.hpp │ ├── complex.cpp │ ├── complex.hpp │ ├── deque.cpp │ ├── deque.hpp │ ├── doctest.h │ ├── forward_list.cpp │ ├── forward_list.hpp │ ├── list.cpp │ ├── list.hpp │ ├── load_construct.cpp │ ├── load_construct.hpp │ ├── map.cpp │ ├── map.hpp │ ├── memory.cpp │ ├── memory.hpp │ ├── memory_cycles.cpp │ ├── memory_cycles.hpp │ ├── multimap.cpp │ ├── multimap.hpp │ ├── multiset.cpp │ ├── multiset.hpp │ ├── pair.cpp │ ├── pair.hpp │ ├── pod.cpp │ ├── pod.hpp │ ├── polymorphic.cpp │ ├── polymorphic.hpp │ ├── portability_test.cpp │ ├── portable_binary_archive.cpp │ ├── portable_binary_archive.hpp │ ├── priority_queue.cpp │ ├── priority_queue.hpp │ ├── queue.cpp │ ├── queue.hpp │ ├── run_portability_test.cmake │ ├── run_valgrind.sh │ ├── set.cpp │ ├── set.hpp │ ├── stack.cpp │ ├── stack.hpp │ ├── structs.cpp │ ├── structs.hpp │ ├── structs_minimal.cpp │ ├── structs_minimal.hpp │ ├── structs_specialized.cpp │ ├── structs_specialized.hpp │ ├── tuple.cpp │ ├── tuple.hpp │ ├── unordered_loads.cpp │ ├── unordered_loads.hpp │ ├── unordered_map.cpp │ ├── unordered_map.hpp │ ├── unordered_multimap.cpp │ ├── unordered_multimap.hpp │ ├── unordered_multiset.cpp │ ├── unordered_multiset.hpp │ ├── unordered_set.cpp │ ├── unordered_set.hpp │ ├── user_data_adapters.cpp │ ├── user_data_adapters.hpp │ ├── valarray.cpp │ ├── valarray.hpp │ ├── vector.cpp │ ├── vector.hpp │ ├── versioning.cpp │ └── versioning.hpp └── vs2013 │ ├── .gitignore │ ├── sandbox │ ├── sandbox.vcxproj │ └── sandbox.vcxproj.filters │ ├── sandbox_json │ ├── sandbox_json.vcxproj │ └── sandbox_json.vcxproj.filters │ ├── sandbox_rtti │ ├── sandbox_rtti.vcxproj │ └── sandbox_rtti.vcxproj.filters │ ├── sandbox_vs │ ├── sandbox_vs.vcxproj │ └── sandbox_vs.vcxproj.filters │ ├── sandbox_vs_dll │ ├── sandbox_vs_dll.vcxproj │ └── sandbox_vs_dll.vcxproj.filters │ ├── unittests │ ├── main.cpp │ ├── unittests.vcxproj │ └── unittests.vcxproj.filters │ └── vs2013.sln ├── deeplstm.cc ├── samples ├── enwik10_2lstm_N2304_S150_B128_sample_1189.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1192.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1198.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1199.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1200.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1204.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1205.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1206.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1208.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1210.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1211.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1212.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1213.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1214.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1215.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1216.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1217.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1218.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1219.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1220.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1221.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1222.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1223.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1224.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1225.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1226.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1227.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1228.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1229.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1230.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1231.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1232.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1233.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1234.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1235.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1236.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1237.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1238.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1239.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1240.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1241.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1242.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1243.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1244.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1245.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1246.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1247.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1248.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1249.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1250.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1251.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1252.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1253.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1254.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1255.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1256.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1257.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1258.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1259.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1260.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1261.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1262.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1263.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1266.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1267.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1268.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1270.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1272.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1273.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1274.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1275.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1276.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1277.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1278.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1281.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1282.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1283.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1284.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1285.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1287.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1288.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1289.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1290.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1291.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1292.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1293.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1294.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1295.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1296.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1297.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1298.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1299.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1300.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1301.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1303.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1304.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1305.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1306.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1307.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1308.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1310.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1311.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1312.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1315.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1316.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1317.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1320.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1321.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1322.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1324.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1325.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1326.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1327.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1332.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1333.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1335.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1337.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1338.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1342.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1343.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1345.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1348.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1349.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1351.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1353.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1354.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1358.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1360.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1366.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1367.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1368.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1371.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1374.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1376.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1377.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1378.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1381.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1386.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1392.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1393.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1395.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1397.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1400.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1402.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1406.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1412.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1415.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1429.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1430.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1432.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1437.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1438.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1439.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1443.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1445.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1446.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1448.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1450.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1461.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1466.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1472.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1474.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1484.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1486.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1495.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1496.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1520.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1531.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1548.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1578.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1583.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1591.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1627.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1662.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1678.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1705.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1834.txt ├── enwik10_2lstm_N2304_S150_B128_sample_1938.txt ├── enwik10_2lstm_N2304_S150_B128_sample_4701.txt ├── enwik10_2lstm_N2304_S150_B128_sample_5392.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1539.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1540.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1541.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1543.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1544.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1547.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1548.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1551.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1552.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1554.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1555.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1557.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1558.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1559.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1560.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1561.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1562.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1564.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1565.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1566.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1567.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1568.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1569.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1572.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1574.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1575.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1577.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1578.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1580.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1584.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1591.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1592.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1595.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1598.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1600.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1601.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1602.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1609.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1621.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1626.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1628.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1637.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1655.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1661.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1683.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1709.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1733.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1794.txt ├── enwik8_0626_alstm2_N1024_S150_B256_sample_1910.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1592.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1594.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1596.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1602.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1604.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1605.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1607.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1608.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1609.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1611.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1613.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1614.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1616.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1617.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1618.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1619.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1620.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1622.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1627.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1635.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1636.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1640.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1645.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1647.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1659.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1665.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1667.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1672.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1679.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1717.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1728.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1797.txt ├── enwik8_0626_alstm2_N1500_S25_B256_sample_1876.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1495.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1499.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1500.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1502.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1503.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1504.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1505.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1508.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1509.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1510.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1511.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1512.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1513.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1514.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1515.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1516.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1517.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1520.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1522.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1523.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1524.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1527.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1529.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1530.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1532.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1534.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1535.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1536.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1540.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1543.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1544.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1546.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1548.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1550.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1551.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1552.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1553.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1556.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1569.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1572.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1577.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1590.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1597.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1618.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1620.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1633.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1652.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1659.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1683.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1717.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1799.txt ├── enwik8_0626_alstm2_N1500_S75_B256_sample_1915.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1435.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1448.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1449.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1452.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1457.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1459.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1460.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1467.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1468.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1469.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1470.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1471.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1474.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1475.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1476.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1478.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1479.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1482.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1483.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1484.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1486.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1488.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1489.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1491.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1492.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1494.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1495.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1499.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1500.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1501.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1502.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1503.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1504.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1506.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1508.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1509.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1510.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1512.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1515.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1517.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1518.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1520.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1521.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1523.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1527.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1531.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1533.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1538.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1539.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1540.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1541.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1542.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1544.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1549.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1556.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1559.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1575.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1596.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1601.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1630.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1637.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1640.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1675.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1711.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1723.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1747.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1824.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_1896.txt ├── enwik8_0626_alstm2_N2000_S250_B64_sample_2098.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1395.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1399.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1403.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1406.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1407.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1408.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1409.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1410.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1412.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1414.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1415.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1416.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1417.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1420.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1422.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1426.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1427.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1428.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1430.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1431.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1433.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1434.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1435.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1436.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1437.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1438.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1439.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1441.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1442.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1443.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1444.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1445.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1447.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1448.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1451.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1452.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1454.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1455.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1456.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1459.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1470.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1471.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1474.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1475.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1477.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1480.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1486.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1487.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1488.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1490.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1494.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1496.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1497.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1502.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1505.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1511.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1516.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1521.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1526.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1533.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1537.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1553.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1557.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1561.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1569.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1586.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1596.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1612.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1625.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1636.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1674.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1681.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1696.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1726.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1766.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1821.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1877.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_1965.txt ├── enwik8_0626_alstm2_N4000_S75_B128_sample_2185.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1508.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1520.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1521.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1523.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1525.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1528.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1530.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1533.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1534.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1536.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1538.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1541.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1545.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1548.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1549.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1550.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1551.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1552.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1554.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1555.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1556.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1562.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1563.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1564.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1567.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1568.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1569.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1570.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1575.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1581.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1587.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1589.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1590.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1591.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1595.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1601.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1602.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1613.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1622.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1624.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1626.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1628.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1640.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1650.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1652.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1655.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1670.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1675.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1676.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1692.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1697.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1720.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1739.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1754.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1769.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1788.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1833.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_1887.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_2011.txt ├── enwik8_0626_alstm4_N1536_S150_B128_sample_2238.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1517.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1521.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1524.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1528.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1529.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1530.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1533.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1534.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1535.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1536.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1537.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1538.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1541.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1542.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1543.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1544.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1545.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1546.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1550.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1551.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1552.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1553.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1554.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1555.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1556.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1558.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1560.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1561.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1566.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1568.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1571.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1576.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1581.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1582.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1585.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1587.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1589.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1591.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1592.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1596.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1600.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1614.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1619.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1628.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1633.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1635.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1637.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1645.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1654.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1657.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1663.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1682.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1685.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1686.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1699.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1716.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1740.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1763.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1766.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1810.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1866.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_1923.txt ├── enwik8_0626_alstm4_N1536_S75_B256_sample_2138.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1623.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1625.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1629.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1631.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1639.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1640.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1642.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1644.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1645.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1646.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1647.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1648.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1649.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1650.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1653.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1655.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1656.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1657.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1658.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1660.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1661.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1662.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1664.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1665.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1668.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1669.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1671.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1674.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1675.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1677.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1681.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1682.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1683.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1684.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1686.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1689.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1691.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1693.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1698.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1699.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1700.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1702.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1705.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1712.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1714.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1716.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1719.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1720.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1726.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1734.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1746.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1751.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1754.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1757.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1765.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1767.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1775.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1779.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1793.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1798.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1803.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1814.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1820.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1833.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1869.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1877.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1890.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1924.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_1951.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_2015.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_2139.txt ├── enwik8_0626_alstm8_N1024_S100_B128_sample_2367.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1671.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1672.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1673.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1697.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1705.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1742.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1749.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1781.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1818.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1825.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1871.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1905.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_1961.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_2079.txt ├── enwik8_alstm2_0626_N5000_S50_B128_sample_2397.txt ├── enwik8_alstm2_0702_N2800_S75_B128_sample_2088.txt ├── enwik8_alstm2_0702_N2800_S75_B128_sample_2467.txt ├── enwik8_alstm2_0702_N4000_S75_B128_sample_2363.txt ├── enwik8_alstm2_0702_N4000_S75_B128_sample_2821.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1393.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1398.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1399.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1405.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1408.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1409.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1412.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1413.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1414.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1415.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1417.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1419.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1420.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1421.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1422.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1424.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1425.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1426.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1427.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1428.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1429.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1430.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1431.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1434.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1435.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1436.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1437.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1438.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1442.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1444.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1445.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1446.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1453.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1454.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1455.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1458.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1462.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1463.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1465.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1466.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1468.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1469.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1472.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1473.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1474.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1476.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1478.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1485.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1488.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1498.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1499.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1501.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1506.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1510.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1513.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1522.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1531.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1549.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1555.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1557.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1558.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1580.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1586.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1609.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1623.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1643.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1678.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1696.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1784.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_1832.txt ├── enwik8_alstm2_0703_N2800_S75_B128_sample_2022.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1381.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1382.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1383.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1387.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1391.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1394.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1395.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1396.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1397.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1399.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1401.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1402.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1403.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1406.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1408.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1409.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1410.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1411.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1412.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1413.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1414.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1415.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1416.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1417.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1418.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1419.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1420.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1421.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1422.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1423.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1424.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1425.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1426.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1427.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1428.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1430.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1431.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1432.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1433.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1434.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1435.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1437.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1438.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1440.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1443.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1446.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1448.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1449.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1450.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1451.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1452.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1453.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1454.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1455.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1456.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1457.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1459.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1460.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1461.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1463.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1464.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1468.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1469.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1471.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1474.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1477.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1479.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1480.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1486.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1494.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1495.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1499.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1504.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1505.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1506.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1508.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1512.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1513.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1521.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1526.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1538.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1543.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1549.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1566.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1574.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1575.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1583.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1589.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1608.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1610.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1611.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1623.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1652.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1660.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1713.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1755.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1765.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1815.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1890.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_1994.txt ├── enwik8_alstm2_0703_N4000_S75_B128_sample_2261.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1406.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1419.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1424.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1425.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1428.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1430.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1431.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1432.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1433.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1434.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1435.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1437.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1438.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1439.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1441.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1442.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1443.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1444.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1445.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1446.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1447.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1448.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1449.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1450.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1451.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1452.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1453.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1454.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1455.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1456.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1457.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1458.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1459.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1460.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1461.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1462.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1463.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1464.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1465.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1466.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1467.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1468.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1469.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1470.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1471.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1472.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1473.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1474.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1475.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1476.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1477.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1478.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1480.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1481.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1484.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1485.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1486.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1487.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1490.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1492.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1496.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1497.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1498.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1505.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1510.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1512.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1520.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1521.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1524.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1529.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1541.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1542.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1547.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1551.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1564.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1573.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1575.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1583.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1590.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1600.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1602.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1613.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1636.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1660.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1689.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1758.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1778.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_1887.txt ├── enwik8_alstm2_hard_N2208_S150_B128_sample_2146.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1406.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1413.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1436.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1437.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1438.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1440.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1443.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1444.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1445.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1446.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1447.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1449.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1450.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1451.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1453.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1454.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1455.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1456.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1457.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1458.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1459.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1460.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1461.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1462.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1463.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1465.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1466.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1468.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1469.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1470.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1472.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1473.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1475.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1476.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1477.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1478.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1479.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1480.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1481.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1482.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1483.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1484.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1485.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1486.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1487.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1488.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1489.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1490.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1491.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1492.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1493.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1495.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1496.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1497.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1498.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1501.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1502.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1504.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1505.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1506.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1507.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1508.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1510.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1512.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1515.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1516.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1518.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1519.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1520.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1523.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1524.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1531.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1534.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1537.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1539.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1541.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1560.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1570.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1598.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1684.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_1793.txt ├── enwik8_aslstm2_hard_N3200_S150_B128_sample_2078.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1468.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1472.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1473.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1482.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1484.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1489.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1493.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1498.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1502.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1503.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1507.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1508.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1510.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1519.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1521.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1524.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1526.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1552.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1556.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1574.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1580.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1625.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1670.txt ├── enwik8_aslstm4_clip_hard_N2048_S100_B128_sample_1765.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1439.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1441.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1442.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1444.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1445.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1446.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1447.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1448.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1449.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1451.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1452.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1454.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1455.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1456.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1457.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1458.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1459.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1463.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1464.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1465.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1466.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1467.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1468.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1469.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1470.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1471.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1472.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1473.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1474.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1475.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1476.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1477.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1478.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1479.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1482.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1483.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1484.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1485.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1486.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1488.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1489.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1490.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1491.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1492.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1493.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1496.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1497.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1501.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1503.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1508.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1514.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1529.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1531.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1534.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1537.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1544.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1551.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1573.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1606.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1646.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1673.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1760.txt ├── enwik8_aslstm4_hard_N3200_S100_B128_sample_1937.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1408.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1410.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1413.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1416.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1419.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1420.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1421.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1422.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1423.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1424.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1427.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1429.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1430.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1433.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1434.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1436.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1438.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1444.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1445.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1446.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1453.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1459.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1463.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1465.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1468.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1469.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1470.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1471.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1472.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1475.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1477.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1478.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1479.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1481.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1482.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1483.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1487.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1488.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1489.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1490.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1491.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1492.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1493.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1495.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1498.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1499.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1500.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1502.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1503.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1504.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1505.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1507.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1509.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1510.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1516.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1518.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1520.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1522.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1524.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1532.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1539.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1542.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1568.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1603.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1612.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1670.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1775.txt ├── enwik8_attlstm2_0703_N2800_S75_B128_sample_1930.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1394.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1419.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1420.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1422.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1423.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1425.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1426.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1430.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1431.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1432.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1435.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1436.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1439.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1440.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1441.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1442.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1443.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1444.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1445.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1446.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1447.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1448.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1450.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1451.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1452.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1453.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1454.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1456.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1457.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1458.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1459.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1460.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1461.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1462.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1464.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1465.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1466.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1467.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1469.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1471.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1472.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1473.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1474.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1475.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1477.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1478.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1479.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1481.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1482.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1484.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1486.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1489.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1492.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1493.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1494.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1497.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1499.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1500.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1501.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1504.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1505.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1508.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1509.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1512.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1513.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1514.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1518.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1521.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1524.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1533.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1551.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1563.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1584.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1634.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1643.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1706.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1795.txt ├── enwik8_attlstm4_0703_N1800_S75_B128_sample_1949.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1437.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1438.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1440.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1443.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1444.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1446.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1447.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1448.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1449.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1451.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1452.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1454.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1456.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1457.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1458.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1459.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1460.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1461.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1462.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1463.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1464.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1465.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1466.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1467.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1468.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1469.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1470.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1471.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1473.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1474.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1475.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1476.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1477.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1479.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1480.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1482.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1483.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1484.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1485.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1487.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1488.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1490.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1491.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1492.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1497.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1500.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1502.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1504.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1505.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1506.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1511.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1512.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1515.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1522.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1524.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1530.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1543.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1546.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1549.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1566.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1575.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1579.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1594.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1625.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1685.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1712.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1803.txt ├── enwik8_attlstm8_0703_N900_S75_B128_sample_1998.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1510.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1536.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1540.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1565.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1568.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1573.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1578.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1595.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1625.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1652.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1693.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1729.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1763.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_1870.txt ├── enwik8_clstm2_0702_N2800_S75_B128_sample_2159.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1424.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1428.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1437.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1449.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1459.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1461.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1462.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1463.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1465.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1469.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1471.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1472.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1473.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1474.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1476.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1477.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1480.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1481.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1482.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1483.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1487.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1488.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1490.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1491.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1493.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1494.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1497.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1503.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1506.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1507.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1511.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1516.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1517.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1533.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1557.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1595.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1605.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1692.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1769.txt ├── enwik8_clstm2_0703_N2800_S75_B128_sample_1998.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1425.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1426.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1428.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1431.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1442.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1454.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1455.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1458.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1462.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1463.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1468.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1473.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1474.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1478.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1481.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1483.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1485.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1488.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1494.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1507.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1522.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1525.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1553.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1603.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1623.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1685.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_1759.txt ├── enwik8_clstm2_randf_0703_N2800_S75_B128_sample_2010.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1425.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1433.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1435.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1439.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1440.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1441.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1445.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1446.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1447.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1450.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1452.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1455.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1456.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1457.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1458.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1459.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1460.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1462.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1464.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1466.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1469.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1470.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1471.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1472.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1473.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1476.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1478.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1479.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1480.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1482.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1484.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1485.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1487.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1490.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1491.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1492.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1493.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1495.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1497.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1498.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1499.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1500.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1502.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1508.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1511.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1513.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1515.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1516.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1520.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1525.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1527.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1528.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1537.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1539.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1576.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1578.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1626.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1663.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1737.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_1855.txt ├── enwik8_clstm4_0703_N2000_S75_B128_sample_2523.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1445.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1452.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1453.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1456.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1466.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1467.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1469.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1471.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1472.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1473.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1474.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1475.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1476.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1480.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1481.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1482.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1485.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1486.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1487.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1488.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1489.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1490.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1491.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1492.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1493.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1494.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1495.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1496.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1497.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1498.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1499.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1500.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1501.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1502.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1504.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1506.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1510.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1511.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1512.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1513.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1516.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1517.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1519.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1522.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1526.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1528.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1529.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1531.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1532.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1533.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1534.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1541.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1547.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1559.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1572.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1587.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1604.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1633.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1715.txt ├── enwik8_clstm4_N1536_S150_B128_sample_1819.txt ├── enwik8_clstm4_N1536_S150_B128_sample_2120.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1625.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1632.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1640.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1641.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1643.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1644.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1646.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1658.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1672.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1675.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1679.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1691.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1700.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1706.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1713.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1714.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1761.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1798.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1827.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_1897.txt ├── enwik8_cmlstm16_softatt_0626_N256_S100_B128_sample_2040.txt ├── enwik8_cmlstm16_softatt_0626_N256_S75_B256_sample_2093.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1485.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1487.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1502.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1503.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1505.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1508.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1509.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1513.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1514.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1516.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1517.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1520.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1526.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1527.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1529.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1530.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1532.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1533.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1535.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1539.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1543.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1544.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1549.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1551.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1555.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1561.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1562.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1565.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1571.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1578.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1581.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1585.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1586.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1591.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1593.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1598.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1602.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1603.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1605.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1610.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1612.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1640.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1643.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1666.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1674.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1693.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1695.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1716.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1776.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1804.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_1895.txt ├── enwik8_cmlstm16_softatt_0626_N512_S75_B128_sample_2075.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1442.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1446.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1448.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1452.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1454.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1455.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1457.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1461.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1463.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1464.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1469.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1470.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1471.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1473.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1474.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1475.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1477.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1479.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1480.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1482.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1483.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1484.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1487.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1490.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1492.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1493.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1495.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1496.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1498.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1501.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1505.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1507.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1512.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1522.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1527.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1530.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1538.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1552.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1555.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1582.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1586.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1617.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1629.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1677.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1737.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1788.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_1853.txt ├── enwik8_dolstm2_0626_N4000_S75_B128_sample_2071.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1406.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1410.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1412.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1414.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1415.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1416.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1417.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1418.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1419.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1420.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1421.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1422.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1423.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1424.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1425.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1427.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1428.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1429.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1430.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1433.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1434.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1435.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1436.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1437.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1438.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1442.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1444.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1445.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1446.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1449.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1453.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1455.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1458.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1459.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1466.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1470.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1471.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1474.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1475.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1476.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1480.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1485.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1487.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1492.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1494.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1498.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1502.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1504.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1512.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1517.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1519.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1521.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1523.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1525.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1526.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1528.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1531.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1543.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1547.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1556.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1577.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1589.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1599.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1602.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1637.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1651.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1691.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1734.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1769.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_1848.txt ├── enwik8_dolstm2_0703_N2800_S75_B128_sample_2033.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1489.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1502.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1504.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1507.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1516.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1519.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1521.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1522.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1525.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1526.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1527.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1529.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1530.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1531.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1532.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1535.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1537.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1538.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1543.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1547.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1548.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1563.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1564.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1568.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1569.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1577.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1578.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1587.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1612.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1614.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1618.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1624.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1634.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1657.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1666.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1676.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1714.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1763.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_1856.txt ├── enwik8_dolstm8_0626_N1024_S100_B128_sample_2022.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1607.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1609.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1620.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1629.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1631.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1632.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1633.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1643.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1644.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1646.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1654.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1661.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1664.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1671.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1672.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1692.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1693.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1718.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1739.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1765.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1799.txt ├── enwik8_dolstm8_0626_N512_S75_B256_sample_1913.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1413.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1422.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1430.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1433.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1434.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1435.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1437.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1445.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1446.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1449.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1453.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1454.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1455.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1458.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1459.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1461.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1462.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1463.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1466.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1467.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1468.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1469.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1471.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1472.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1473.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1475.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1477.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1479.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1480.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1489.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1493.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1501.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1504.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1507.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1508.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1512.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1518.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1527.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1529.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1531.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1539.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1571.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1578.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1626.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1650.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1713.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1818.txt ├── enwik8_hardatt2max_0703_N2800_S75_B128_sample_1947.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1526.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1527.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1528.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1529.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1530.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1531.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1532.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1535.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1536.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1537.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1540.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1542.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1544.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1546.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1551.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1553.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1555.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1556.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1558.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1559.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1561.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1564.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1567.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1568.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1569.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1570.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1572.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1574.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1575.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1579.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1580.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1582.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1583.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1586.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1587.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1588.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1598.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1599.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1601.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1605.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1606.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1608.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1609.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1612.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1615.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1617.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1618.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1619.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1621.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1623.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1624.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1625.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1628.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1630.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1637.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1640.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1643.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1653.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1654.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1659.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1661.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1662.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1670.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1672.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1673.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1675.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1680.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1681.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1691.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1692.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1694.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1700.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1706.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1710.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1717.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1720.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1721.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1748.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1760.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1764.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1776.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1784.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1804.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1805.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1806.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1825.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1826.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1874.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1879.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1920.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1949.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_1969.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_2033.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_2145.txt ├── enwik8_hardatt2stoch_0703_N2800_S75_B128_sample_2338.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1420.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1425.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1426.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1427.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1429.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1434.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1435.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1438.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1440.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1441.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1442.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1444.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1445.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1446.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1447.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1448.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1449.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1450.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1451.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1452.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1453.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1454.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1455.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1456.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1457.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1458.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1459.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1460.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1461.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1463.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1464.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1466.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1467.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1468.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1469.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1471.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1475.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1476.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1477.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1478.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1479.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1480.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1488.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1489.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1490.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1491.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1493.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1512.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1515.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1521.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1528.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1538.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1546.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1555.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1557.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1560.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1576.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1604.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1611.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1633.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1665.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1691.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1746.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1821.txt ├── enwik8_hardatt4max_0703_N1800_S75_B128_sample_1969.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1441.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1442.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1443.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1450.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1455.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1456.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1457.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1458.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1461.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1462.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1465.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1467.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1468.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1469.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1470.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1471.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1472.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1473.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1477.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1481.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1482.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1483.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1484.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1485.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1486.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1487.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1488.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1489.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1491.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1492.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1493.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1496.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1498.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1500.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1501.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1502.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1506.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1507.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1509.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1511.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1512.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1513.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1514.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1515.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1516.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1517.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1520.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1521.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1523.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1525.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1526.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1528.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1530.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1531.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1532.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1533.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1534.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1537.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1538.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1539.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1540.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1541.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1542.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1543.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1544.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1545.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1546.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1547.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1549.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1550.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1552.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1553.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1554.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1555.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1556.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1558.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1559.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1561.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1562.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1563.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1565.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1566.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1567.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1568.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1570.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1571.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1572.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1575.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1576.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1577.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1578.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1579.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1580.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1581.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1582.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1583.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1584.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1585.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1586.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1587.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1588.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1589.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1591.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1594.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1595.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1596.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1597.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1598.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1599.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1600.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1601.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1602.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1603.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1607.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1608.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1610.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1611.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1613.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1614.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1615.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1616.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1618.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1620.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1622.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1624.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1626.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1629.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1631.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1634.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1637.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1640.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1661.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1715.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1767.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1801.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1940.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_1944.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_2198.txt ├── enwik8_hlstm2_N2208_S150_B128_sample_2340.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1441.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1445.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1450.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1454.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1455.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1457.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1458.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1459.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1460.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1463.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1464.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1465.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1466.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1467.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1468.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1469.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1470.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1472.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1474.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1475.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1476.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1478.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1480.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1481.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1482.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1483.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1484.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1486.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1487.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1489.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1491.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1493.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1494.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1495.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1496.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1498.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1499.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1501.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1503.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1506.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1508.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1509.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1517.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1518.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1544.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1557.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1574.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1637.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1685.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_1763.txt ├── enwik8_hlstm2_N2208_S75_B256_sample_2037.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1415.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1442.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1449.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1450.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1452.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1455.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1456.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1457.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1458.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1459.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1460.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1461.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1463.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1464.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1465.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1466.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1467.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1468.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1470.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1471.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1472.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1474.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1475.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1476.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1477.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1478.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1479.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1480.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1481.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1483.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1484.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1485.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1486.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1487.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1488.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1489.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1493.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1494.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1495.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1496.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1497.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1499.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1500.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1502.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1507.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1510.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1515.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1517.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1520.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1521.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1522.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1531.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1535.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1542.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1551.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1553.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1565.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1568.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1571.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1584.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1593.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1597.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1598.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1625.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1640.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1652.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1667.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1676.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1702.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1736.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1767.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1837.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_1868.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_2045.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_2472.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_4584.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_7162.txt ├── enwik8_hlstm3_N1890_S150_B128_sample_9752.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1445.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1451.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1453.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1454.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1455.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1456.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1457.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1458.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1460.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1462.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1465.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1466.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1468.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1469.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1470.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1471.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1472.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1473.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1474.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1475.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1476.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1477.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1478.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1479.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1480.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1481.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1482.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1483.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1484.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1485.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1486.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1487.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1488.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1489.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1490.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1491.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1492.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1493.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1495.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1496.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1497.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1498.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1499.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1500.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1501.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1502.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1503.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1505.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1506.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1507.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1509.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1511.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1512.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1513.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1514.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1515.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1516.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1518.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1519.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1520.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1521.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1523.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1528.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1530.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1531.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1539.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1542.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1547.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1552.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1564.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1587.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1588.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1597.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1598.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1613.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1614.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1623.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1636.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1662.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1667.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1669.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1694.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1725.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1740.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1763.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1786.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1831.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_1897.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_2059.txt ├── enwik8_hlstm4_N1536_S150_B128_sample_2339.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_2855.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_2975.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_3041.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_3292.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_3432.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_3634.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_3932.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_4287.txt ├── enwik8_lstm_0703_N1000_S250_B128_sample_4881.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1455.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1464.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1468.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1470.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1473.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1482.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1485.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1490.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1494.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1501.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1504.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1507.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1511.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1530.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1537.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1555.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1563.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1621.txt ├── enwik8_lstm_0703_N2000_S75_B128_sample_1714.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1434.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1448.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1449.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1454.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1460.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1461.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1462.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1463.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1465.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1470.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1473.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1474.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1492.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1495.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1503.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1550.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1571.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1588.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1657.txt ├── enwik8_lstm_0703_N3000_S75_B128_sample_1776.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1435.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1436.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1437.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1440.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1441.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1442.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1443.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1446.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1447.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1448.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1452.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1454.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1455.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1458.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1460.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1462.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1464.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1465.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1468.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1469.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1471.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1473.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1475.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1477.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1478.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1479.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1480.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1481.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1483.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1484.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1486.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1488.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1490.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1491.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1492.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1493.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1495.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1499.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1501.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1503.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1505.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1506.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1507.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1509.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1512.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1513.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1514.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1516.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1518.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1520.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1521.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1523.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1524.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1528.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1529.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1533.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1536.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1537.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1538.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1541.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1542.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1544.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1545.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1547.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1550.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1551.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1552.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1553.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1554.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1555.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1556.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1558.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1559.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1560.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1562.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1565.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1567.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1569.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1570.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1571.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1573.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1574.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1577.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1580.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1582.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1586.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1587.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1588.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1590.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1592.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1593.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1597.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1599.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1600.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1604.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1605.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1606.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1607.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1609.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1613.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1614.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1619.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1622.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1623.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1624.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1625.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1626.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1630.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1634.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1668.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1722.txt ├── enwik8_lstm_0703_N4000_S75_B128_sample_1891.txt ├── enwik8_lstm_N3200_S150_B128_sample_1454.txt ├── enwik8_lstm_N3200_S150_B128_sample_1459.txt ├── enwik8_lstm_N3200_S150_B128_sample_1460.txt ├── enwik8_lstm_N3200_S150_B128_sample_1463.txt ├── enwik8_lstm_N3200_S150_B128_sample_1466.txt ├── enwik8_lstm_N3200_S150_B128_sample_1467.txt ├── enwik8_lstm_N3200_S150_B128_sample_1471.txt ├── enwik8_lstm_N3200_S150_B128_sample_1472.txt ├── enwik8_lstm_N3200_S150_B128_sample_1475.txt ├── enwik8_lstm_N3200_S150_B128_sample_1477.txt ├── enwik8_lstm_N3200_S150_B128_sample_1478.txt ├── enwik8_lstm_N3200_S150_B128_sample_1479.txt ├── enwik8_lstm_N3200_S150_B128_sample_1481.txt ├── enwik8_lstm_N3200_S150_B128_sample_1482.txt ├── enwik8_lstm_N3200_S150_B128_sample_1483.txt ├── enwik8_lstm_N3200_S150_B128_sample_1484.txt ├── enwik8_lstm_N3200_S150_B128_sample_1486.txt ├── enwik8_lstm_N3200_S150_B128_sample_1488.txt ├── enwik8_lstm_N3200_S150_B128_sample_1489.txt ├── enwik8_lstm_N3200_S150_B128_sample_1490.txt ├── enwik8_lstm_N3200_S150_B128_sample_1491.txt ├── enwik8_lstm_N3200_S150_B128_sample_1492.txt ├── enwik8_lstm_N3200_S150_B128_sample_1493.txt ├── enwik8_lstm_N3200_S150_B128_sample_1500.txt ├── enwik8_lstm_N3200_S150_B128_sample_1502.txt ├── enwik8_lstm_N3200_S150_B128_sample_1503.txt ├── enwik8_lstm_N3200_S150_B128_sample_1510.txt ├── enwik8_lstm_N3200_S150_B128_sample_1511.txt ├── enwik8_lstm_N3200_S150_B128_sample_1514.txt ├── enwik8_lstm_N3200_S150_B128_sample_1516.txt ├── enwik8_lstm_N3200_S150_B128_sample_1517.txt ├── enwik8_lstm_N3200_S150_B128_sample_1519.txt ├── enwik8_lstm_N3200_S150_B128_sample_1521.txt ├── enwik8_lstm_N3200_S150_B128_sample_1523.txt ├── enwik8_lstm_N3200_S150_B128_sample_1525.txt ├── enwik8_lstm_N3200_S150_B128_sample_1527.txt ├── enwik8_lstm_N3200_S150_B128_sample_1529.txt ├── enwik8_lstm_N3200_S150_B128_sample_1530.txt ├── enwik8_lstm_N3200_S150_B128_sample_1531.txt ├── enwik8_lstm_N3200_S150_B128_sample_1538.txt ├── enwik8_lstm_N3200_S150_B128_sample_1541.txt ├── enwik8_lstm_N3200_S150_B128_sample_1543.txt ├── enwik8_lstm_N3200_S150_B128_sample_1547.txt ├── enwik8_lstm_N3200_S150_B128_sample_1556.txt ├── enwik8_lstm_N3200_S150_B128_sample_1562.txt ├── enwik8_lstm_N3200_S150_B128_sample_1580.txt ├── enwik8_lstm_N3200_S150_B128_sample_1604.txt ├── enwik8_lstm_N3200_S150_B128_sample_1639.txt ├── enwik8_lstm_N3200_S150_B128_sample_1711.txt ├── enwik8_lstm_N3200_S150_B128_sample_1843.txt ├── enwik8_lstm_N3200_S150_B128_sample_2258.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1680.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1711.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1718.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1733.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1760.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1779.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1786.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1787.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1809.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1849.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1884.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_1901.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_2008.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_2091.txt ├── enwik8_splstm2_0702_N2800_S75_B128_sample_2372.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1399.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1402.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1404.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1407.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1408.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1410.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1414.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1415.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1416.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1417.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1418.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1419.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1420.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1421.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1423.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1424.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1425.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1426.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1427.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1428.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1429.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1430.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1431.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1432.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1433.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1434.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1435.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1436.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1437.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1438.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1439.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1440.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1441.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1442.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1443.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1444.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1445.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1446.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1447.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1448.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1449.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1450.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1451.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1452.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1453.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1454.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1455.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1456.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1457.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1458.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1459.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1460.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1461.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1462.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1464.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1465.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1466.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1467.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1469.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1476.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1481.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1483.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1484.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1489.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1491.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1499.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1503.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1504.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1507.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1520.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1524.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1530.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1531.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1535.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1572.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1574.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1578.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1588.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1596.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1618.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1633.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1694.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1725.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1757.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_1842.txt ├── enwik8_splstm2_0703_N2800_S75_B128_sample_2038.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1420.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1435.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1437.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1439.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1440.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1441.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1442.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1443.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1444.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1445.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1446.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1447.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1448.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1449.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1450.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1451.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1452.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1453.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1455.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1456.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1457.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1458.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1459.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1460.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1461.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1462.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1463.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1464.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1465.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1466.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1467.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1468.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1469.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1470.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1471.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1472.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1473.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1474.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1475.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1476.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1477.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1478.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1479.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1480.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1481.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1482.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1483.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1484.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1486.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1487.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1488.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1489.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1490.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1491.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1492.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1493.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1494.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1495.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1496.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1497.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1499.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1500.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1501.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1502.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1503.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1504.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1505.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1506.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1507.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1508.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1509.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1510.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1511.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1512.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1515.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1516.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1519.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1520.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1522.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1523.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1524.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1525.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1528.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1529.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1530.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1535.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1539.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1541.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1547.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1556.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1565.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1569.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1593.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1595.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1625.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1659.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1663.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1710.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1750.txt ├── enwik8_splstm2_N2208_S150_B128_sample_1865.txt ├── enwik8_splstm2_N2208_S150_B128_sample_2077.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1439.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1447.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1448.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1450.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1451.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1453.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1455.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1456.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1457.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1458.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1460.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1461.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1462.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1463.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1464.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1465.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1466.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1467.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1468.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1469.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1470.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1471.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1472.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1473.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1474.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1475.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1476.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1481.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1484.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1485.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1486.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1489.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1490.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1492.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1494.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1495.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1496.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1502.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1503.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1512.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1515.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1518.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1522.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1533.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1534.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1538.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1539.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1544.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1567.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1568.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1580.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1601.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1611.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1627.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1651.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1685.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1738.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1794.txt ├── enwik8_splstm2_N2208_S75_B256_sample_1986.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1411.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1424.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1427.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1430.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1437.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1439.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1441.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1442.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1443.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1446.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1448.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1449.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1450.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1451.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1452.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1453.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1454.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1455.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1456.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1457.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1458.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1459.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1460.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1461.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1462.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1463.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1464.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1465.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1466.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1467.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1469.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1470.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1471.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1472.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1474.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1475.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1476.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1477.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1478.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1479.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1480.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1482.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1483.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1484.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1485.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1488.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1489.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1490.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1491.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1493.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1494.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1495.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1497.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1498.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1499.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1500.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1503.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1504.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1505.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1507.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1508.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1510.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1513.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1518.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1519.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1521.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1523.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1528.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1533.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1538.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1540.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1541.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1543.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1549.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1553.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1554.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1556.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1562.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1566.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1571.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1577.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1580.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1584.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1598.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1610.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1617.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1636.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1643.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1655.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1665.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1672.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1678.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1696.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1715.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1729.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1753.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1773.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1835.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1876.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_1978.txt ├── enwik8_splstm4_0703_N2000_S75_B128_sample_2194.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1431.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1437.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1440.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1443.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1444.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1445.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1447.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1448.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1449.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1450.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1451.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1452.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1453.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1454.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1455.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1456.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1457.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1458.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1459.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1460.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1461.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1462.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1463.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1464.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1465.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1466.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1467.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1468.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1469.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1470.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1471.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1472.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1473.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1474.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1475.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1476.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1477.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1478.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1479.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1480.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1481.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1482.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1483.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1484.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1485.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1486.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1487.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1488.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1489.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1490.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1492.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1493.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1494.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1496.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1497.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1498.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1499.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1500.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1502.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1503.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1504.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1505.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1507.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1508.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1509.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1510.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1512.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1514.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1515.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1518.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1519.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1522.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1527.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1528.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1531.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1533.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1535.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1536.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1539.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1546.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1547.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1549.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1552.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1555.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1559.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1562.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1564.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1574.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1576.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1577.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1579.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1586.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1598.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1601.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1606.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1612.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1628.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1630.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1640.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1651.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1659.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1691.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1695.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1710.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1754.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1757.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1792.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1879.txt ├── enwik8_splstm4_N1536_S150_B128_sample_1980.txt ├── enwik8_splstm4_N1536_S150_B128_sample_2198.txt ├── enwik8_splstm4_N512_S150_B128_sample_1680.txt ├── enwik8_splstm4_N512_S150_B128_sample_1695.txt ├── enwik8_splstm4_N512_S150_B128_sample_1714.txt ├── enwik8_splstm4_N512_S150_B128_sample_1719.txt ├── enwik8_splstm4_N512_S150_B128_sample_1722.txt ├── enwik8_splstm4_N512_S150_B128_sample_1724.txt ├── enwik8_splstm4_N512_S150_B128_sample_1728.txt ├── enwik8_splstm4_N512_S150_B128_sample_1731.txt ├── enwik8_splstm4_N512_S150_B128_sample_1748.txt ├── enwik8_splstm4_N512_S150_B128_sample_1757.txt ├── enwik8_splstm4_N512_S150_B128_sample_1760.txt ├── enwik8_splstm4_N512_S150_B128_sample_1813.txt ├── enwik8_splstm4_N512_S150_B128_sample_1823.txt ├── enwik8_splstm4_N512_S150_B128_sample_1855.txt ├── enwik8_splstm4_N512_S150_B128_sample_1989.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1558.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1562.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1568.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1578.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1586.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1624.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1657.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1741.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1773.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_1855.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_2026.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_2971.txt ├── enwik9_2lstm_0702_N2800_S75_B128_sample_5181.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1075.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1077.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1081.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1082.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1084.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1086.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1087.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1089.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1092.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1093.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1094.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1095.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1096.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1097.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1098.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1099.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1100.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1101.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1102.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1103.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1104.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1105.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1106.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1107.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1109.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1110.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1111.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1112.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1113.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1114.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1115.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1116.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1117.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1118.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1119.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1120.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1121.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1122.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1123.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1124.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1125.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1126.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1127.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1128.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1129.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1130.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1131.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1132.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1133.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1134.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1135.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1136.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1137.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1138.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1139.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1140.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1141.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1142.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1143.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1144.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1145.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1146.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1147.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1148.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1149.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1150.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1151.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1152.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1153.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1154.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1155.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1156.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1157.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1158.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1159.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1160.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1161.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1162.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1163.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1165.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1166.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1167.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1168.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1169.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1170.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1171.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1172.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1173.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1174.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1175.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1176.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1177.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1178.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1179.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1180.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1181.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1182.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1183.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1185.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1188.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1189.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1191.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1192.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1193.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1194.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1195.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1198.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1201.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1202.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1203.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1204.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1207.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1209.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1210.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1211.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1212.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1213.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1218.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1219.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1220.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1221.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1222.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1224.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1226.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1230.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1233.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1235.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1236.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1239.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1241.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1242.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1246.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1250.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1253.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1258.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1261.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1264.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1265.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1272.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1277.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1279.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1280.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1287.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1289.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1291.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1292.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1294.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1295.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1304.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1305.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1307.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1309.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1313.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1320.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1324.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1329.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1331.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1336.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1338.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1339.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1359.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1369.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1372.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1377.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1398.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1424.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1433.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1469.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1492.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1510.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1533.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1642.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1734.txt ├── enwik9_2lstm_N2304_S150_B128_sample_1957.txt ├── enwik9_2lstm_N2304_S150_B128_sample_5213.txt ├── enwik9_2lstm_N2304_S150_B128_sample_5220.txt ├── enwik9_2lstm_N2304_S150_B128_sample_5222.txt ├── enwik9_2lstm_N2304_S150_B128_sample_5253.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1149.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1158.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1159.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1166.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1167.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1168.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1173.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1175.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1176.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1178.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1182.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1183.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1184.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1185.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1186.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1187.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1188.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1190.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1191.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1192.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1193.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1195.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1196.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1198.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1199.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1200.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1201.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1202.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1206.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1207.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1208.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1209.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1210.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1211.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1212.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1214.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1215.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1216.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1217.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1218.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1220.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1222.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1223.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1224.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1225.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1226.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1229.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1231.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1233.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1235.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1236.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1238.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1239.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1241.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1243.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1245.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1246.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1248.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1249.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1250.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1251.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1255.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1260.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1263.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1264.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1273.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1279.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1283.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1284.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1288.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1289.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1290.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1292.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1294.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1296.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1304.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1311.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1325.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1330.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1333.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1334.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1339.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1343.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1347.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1349.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1351.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1352.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1362.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1373.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1412.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1413.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1416.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1424.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1443.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1491.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1496.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1499.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1555.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1589.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1686.txt ├── enwik9_clstm4_N1536_S150_B128_sample_1787.txt ├── enwik9_clstm4_N1536_S150_B128_sample_2253.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1148.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1151.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1152.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1156.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1159.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1160.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1161.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1165.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1167.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1168.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1169.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1170.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1171.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1172.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1173.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1174.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1175.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1177.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1178.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1179.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1180.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1181.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1182.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1183.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1184.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1185.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1186.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1187.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1188.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1189.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1190.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1191.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1193.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1194.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1195.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1196.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1197.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1198.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1199.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1200.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1201.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1202.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1203.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1204.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1205.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1206.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1207.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1208.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1209.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1210.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1211.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1212.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1213.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1214.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1215.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1216.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1217.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1218.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1219.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1220.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1221.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1222.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1223.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1224.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1226.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1227.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1228.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1229.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1230.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1231.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1232.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1233.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1234.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1236.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1237.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1238.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1239.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1240.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1241.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1242.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1243.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1244.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1245.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1246.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1248.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1249.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1250.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1252.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1254.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1255.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1256.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1260.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1262.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1264.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1266.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1268.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1270.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1272.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1273.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1274.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1275.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1277.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1278.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1281.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1282.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1283.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1286.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1287.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1288.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1289.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1290.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1293.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1294.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1295.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1301.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1302.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1303.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1306.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1307.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1310.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1312.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1314.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1316.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1321.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1322.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1323.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1326.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1327.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1328.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1331.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1332.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1342.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1345.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1346.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1353.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1358.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1363.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1364.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1365.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1374.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1376.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1378.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1383.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1385.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1388.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1409.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1410.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1412.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1413.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1424.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1430.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1445.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1455.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1456.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1457.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1467.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1471.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1481.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1483.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1498.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1515.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1535.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1553.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1561.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1600.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1602.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1634.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1653.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1656.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1681.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1739.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1803.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_1900.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_2013.txt ├── enwik9_hlstm4_N1536_S150_B128_sample_2358.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1230.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1249.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1251.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1253.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1254.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1255.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1256.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1258.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1259.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1260.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1261.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1262.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1263.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1264.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1266.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1267.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1268.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1269.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1270.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1271.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1272.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1273.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1274.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1276.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1277.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1278.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1279.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1280.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1281.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1282.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1283.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1284.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1285.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1286.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1287.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1288.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1289.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1290.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1291.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1292.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1293.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1294.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1295.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1296.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1297.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1298.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1299.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1300.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1301.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1302.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1303.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1304.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1305.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1306.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1307.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1308.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1309.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1310.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1311.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1312.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1313.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1314.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1315.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1316.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1317.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1318.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1319.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1321.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1322.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1323.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1324.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1325.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1326.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1327.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1328.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1330.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1331.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1332.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1333.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1335.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1336.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1337.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1338.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1339.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1340.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1341.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1342.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1343.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1345.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1346.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1348.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1349.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1350.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1351.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1352.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1353.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1354.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1355.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1356.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1357.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1358.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1359.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1361.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1363.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1364.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1365.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1366.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1367.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1369.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1372.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1373.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1374.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1375.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1376.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1381.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1385.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1389.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1392.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1394.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1395.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1397.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1398.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1400.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1403.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1406.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1407.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1410.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1413.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1417.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1426.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1433.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1436.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1439.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1441.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1446.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1447.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1449.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1455.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1459.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1464.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1471.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1472.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1473.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1480.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1482.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1495.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1502.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1522.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1523.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1531.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1532.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1557.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1567.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1572.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1600.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1615.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1676.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1705.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1768.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1804.txt ├── enwik9_splstm4_N1536_S150_B128_sample_1930.txt ├── enwik9_splstm4_N1536_S150_B128_sample_2112.txt ├── t8_hlstm2_N2208_S150_B128_sample_1338.txt ├── t8_hlstm2_N2208_S150_B128_sample_1339.txt ├── t8_hlstm2_N2208_S150_B128_sample_1340.txt ├── t8_hlstm2_N2208_S150_B128_sample_1344.txt ├── t8_hlstm2_N2208_S150_B128_sample_1346.txt ├── t8_hlstm2_N2208_S150_B128_sample_1347.txt ├── t8_hlstm2_N2208_S150_B128_sample_1349.txt ├── t8_hlstm2_N2208_S150_B128_sample_1354.txt ├── t8_hlstm2_N2208_S150_B128_sample_1360.txt ├── t8_hlstm2_N2208_S150_B128_sample_1362.txt ├── t8_hlstm2_N2208_S150_B128_sample_1363.txt ├── t8_hlstm2_N2208_S150_B128_sample_1364.txt ├── t8_hlstm2_N2208_S150_B128_sample_1365.txt ├── t8_hlstm2_N2208_S150_B128_sample_1366.txt ├── t8_hlstm2_N2208_S150_B128_sample_1367.txt ├── t8_hlstm2_N2208_S150_B128_sample_1368.txt ├── t8_hlstm2_N2208_S150_B128_sample_1369.txt ├── t8_hlstm2_N2208_S150_B128_sample_1370.txt ├── t8_hlstm2_N2208_S150_B128_sample_1371.txt ├── t8_hlstm2_N2208_S150_B128_sample_1372.txt ├── t8_hlstm2_N2208_S150_B128_sample_1374.txt ├── t8_hlstm2_N2208_S150_B128_sample_1375.txt ├── t8_hlstm2_N2208_S150_B128_sample_1376.txt ├── t8_hlstm2_N2208_S150_B128_sample_1378.txt ├── t8_hlstm2_N2208_S150_B128_sample_1379.txt ├── t8_hlstm2_N2208_S150_B128_sample_1380.txt ├── t8_hlstm2_N2208_S150_B128_sample_1381.txt ├── t8_hlstm2_N2208_S150_B128_sample_1383.txt ├── t8_hlstm2_N2208_S150_B128_sample_1384.txt ├── t8_hlstm2_N2208_S150_B128_sample_1385.txt ├── t8_hlstm2_N2208_S150_B128_sample_1386.txt ├── t8_hlstm2_N2208_S150_B128_sample_1387.txt ├── t8_hlstm2_N2208_S150_B128_sample_1388.txt ├── t8_hlstm2_N2208_S150_B128_sample_1390.txt ├── t8_hlstm2_N2208_S150_B128_sample_1391.txt ├── t8_hlstm2_N2208_S150_B128_sample_1392.txt ├── t8_hlstm2_N2208_S150_B128_sample_1393.txt ├── t8_hlstm2_N2208_S150_B128_sample_1396.txt ├── t8_hlstm2_N2208_S150_B128_sample_1397.txt ├── t8_hlstm2_N2208_S150_B128_sample_1398.txt ├── t8_hlstm2_N2208_S150_B128_sample_1399.txt ├── t8_hlstm2_N2208_S150_B128_sample_1400.txt ├── t8_hlstm2_N2208_S150_B128_sample_1401.txt ├── t8_hlstm2_N2208_S150_B128_sample_1403.txt ├── t8_hlstm2_N2208_S150_B128_sample_1404.txt ├── t8_hlstm2_N2208_S150_B128_sample_1405.txt ├── t8_hlstm2_N2208_S150_B128_sample_1408.txt ├── t8_hlstm2_N2208_S150_B128_sample_1410.txt ├── t8_hlstm2_N2208_S150_B128_sample_1411.txt ├── t8_hlstm2_N2208_S150_B128_sample_1412.txt ├── t8_hlstm2_N2208_S150_B128_sample_1415.txt ├── t8_hlstm2_N2208_S150_B128_sample_1418.txt ├── t8_hlstm2_N2208_S150_B128_sample_1423.txt ├── t8_hlstm2_N2208_S150_B128_sample_1443.txt ├── t8_hlstm2_N2208_S150_B128_sample_1444.txt ├── t8_hlstm2_N2208_S150_B128_sample_1447.txt ├── t8_hlstm2_N2208_S150_B128_sample_1451.txt ├── t8_hlstm2_N2208_S150_B128_sample_1493.txt ├── t8_hlstm2_N2208_S150_B128_sample_1514.txt ├── t8_hlstm2_N2208_S150_B128_sample_1553.txt ├── t8_hlstm2_N2208_S150_B128_sample_1620.txt ├── t8_hlstm2_N2208_S150_B128_sample_1672.txt ├── t8_hlstm2_N2208_S150_B128_sample_1847.txt ├── t8_hlstm2_N2208_S150_B128_sample_4758.txt ├── t8_lstm_N3200_S150_B128_sample_1341.txt ├── t8_lstm_N3200_S150_B128_sample_1343.txt ├── t8_lstm_N3200_S150_B128_sample_1345.txt ├── t8_lstm_N3200_S150_B128_sample_1346.txt ├── t8_lstm_N3200_S150_B128_sample_1347.txt ├── t8_lstm_N3200_S150_B128_sample_1349.txt ├── t8_lstm_N3200_S150_B128_sample_1350.txt ├── t8_lstm_N3200_S150_B128_sample_1351.txt ├── t8_lstm_N3200_S150_B128_sample_1352.txt ├── t8_lstm_N3200_S150_B128_sample_1354.txt ├── t8_lstm_N3200_S150_B128_sample_1359.txt ├── t8_lstm_N3200_S150_B128_sample_1360.txt ├── t8_lstm_N3200_S150_B128_sample_1361.txt ├── t8_lstm_N3200_S150_B128_sample_1362.txt ├── t8_lstm_N3200_S150_B128_sample_1364.txt ├── t8_lstm_N3200_S150_B128_sample_1365.txt ├── t8_lstm_N3200_S150_B128_sample_1367.txt ├── t8_lstm_N3200_S150_B128_sample_1368.txt ├── t8_lstm_N3200_S150_B128_sample_1369.txt ├── t8_lstm_N3200_S150_B128_sample_1370.txt ├── t8_lstm_N3200_S150_B128_sample_1371.txt ├── t8_lstm_N3200_S150_B128_sample_1372.txt ├── t8_lstm_N3200_S150_B128_sample_1373.txt ├── t8_lstm_N3200_S150_B128_sample_1374.txt ├── t8_lstm_N3200_S150_B128_sample_1378.txt ├── t8_lstm_N3200_S150_B128_sample_1382.txt ├── t8_lstm_N3200_S150_B128_sample_1396.txt ├── t8_lstm_N3200_S150_B128_sample_1403.txt ├── t8_lstm_N3200_S150_B128_sample_1407.txt ├── t8_lstm_N3200_S150_B128_sample_1431.txt ├── t8_lstm_N3200_S150_B128_sample_1435.txt ├── t8_lstm_N3200_S150_B128_sample_1438.txt ├── t8_lstm_N3200_S150_B128_sample_1522.txt ├── t8_lstm_N3200_S150_B128_sample_1538.txt ├── t8_lstm_N3200_S150_B128_sample_1670.txt ├── t8_lstm_N3200_S150_B128_sample_2015.txt ├── t8_splstm2_N2208_S150_B128_sample_1317.txt ├── t8_splstm2_N2208_S150_B128_sample_1326.txt ├── t8_splstm2_N2208_S150_B128_sample_1331.txt ├── t8_splstm2_N2208_S150_B128_sample_1335.txt ├── t8_splstm2_N2208_S150_B128_sample_1337.txt ├── t8_splstm2_N2208_S150_B128_sample_1339.txt ├── t8_splstm2_N2208_S150_B128_sample_1340.txt ├── t8_splstm2_N2208_S150_B128_sample_1341.txt ├── t8_splstm2_N2208_S150_B128_sample_1342.txt ├── t8_splstm2_N2208_S150_B128_sample_1343.txt ├── t8_splstm2_N2208_S150_B128_sample_1344.txt ├── t8_splstm2_N2208_S150_B128_sample_1345.txt ├── t8_splstm2_N2208_S150_B128_sample_1346.txt ├── t8_splstm2_N2208_S150_B128_sample_1347.txt ├── t8_splstm2_N2208_S150_B128_sample_1348.txt ├── t8_splstm2_N2208_S150_B128_sample_1349.txt ├── t8_splstm2_N2208_S150_B128_sample_1350.txt ├── t8_splstm2_N2208_S150_B128_sample_1351.txt ├── t8_splstm2_N2208_S150_B128_sample_1352.txt ├── t8_splstm2_N2208_S150_B128_sample_1353.txt ├── t8_splstm2_N2208_S150_B128_sample_1354.txt ├── t8_splstm2_N2208_S150_B128_sample_1355.txt ├── t8_splstm2_N2208_S150_B128_sample_1356.txt ├── t8_splstm2_N2208_S150_B128_sample_1357.txt ├── t8_splstm2_N2208_S150_B128_sample_1358.txt ├── t8_splstm2_N2208_S150_B128_sample_1359.txt ├── t8_splstm2_N2208_S150_B128_sample_1360.txt ├── t8_splstm2_N2208_S150_B128_sample_1361.txt ├── t8_splstm2_N2208_S150_B128_sample_1362.txt ├── t8_splstm2_N2208_S150_B128_sample_1363.txt ├── t8_splstm2_N2208_S150_B128_sample_1364.txt ├── t8_splstm2_N2208_S150_B128_sample_1365.txt ├── t8_splstm2_N2208_S150_B128_sample_1366.txt ├── t8_splstm2_N2208_S150_B128_sample_1367.txt ├── t8_splstm2_N2208_S150_B128_sample_1368.txt ├── t8_splstm2_N2208_S150_B128_sample_1369.txt ├── t8_splstm2_N2208_S150_B128_sample_1370.txt ├── t8_splstm2_N2208_S150_B128_sample_1371.txt ├── t8_splstm2_N2208_S150_B128_sample_1372.txt ├── t8_splstm2_N2208_S150_B128_sample_1373.txt ├── t8_splstm2_N2208_S150_B128_sample_1374.txt ├── t8_splstm2_N2208_S150_B128_sample_1375.txt ├── t8_splstm2_N2208_S150_B128_sample_1376.txt ├── t8_splstm2_N2208_S150_B128_sample_1377.txt ├── t8_splstm2_N2208_S150_B128_sample_1378.txt ├── t8_splstm2_N2208_S150_B128_sample_1379.txt ├── t8_splstm2_N2208_S150_B128_sample_1380.txt ├── t8_splstm2_N2208_S150_B128_sample_1381.txt ├── t8_splstm2_N2208_S150_B128_sample_1382.txt ├── t8_splstm2_N2208_S150_B128_sample_1383.txt ├── t8_splstm2_N2208_S150_B128_sample_1384.txt ├── t8_splstm2_N2208_S150_B128_sample_1386.txt ├── t8_splstm2_N2208_S150_B128_sample_1387.txt ├── t8_splstm2_N2208_S150_B128_sample_1388.txt ├── t8_splstm2_N2208_S150_B128_sample_1389.txt ├── t8_splstm2_N2208_S150_B128_sample_1390.txt ├── t8_splstm2_N2208_S150_B128_sample_1391.txt ├── t8_splstm2_N2208_S150_B128_sample_1392.txt ├── t8_splstm2_N2208_S150_B128_sample_1394.txt ├── t8_splstm2_N2208_S150_B128_sample_1396.txt ├── t8_splstm2_N2208_S150_B128_sample_1397.txt ├── t8_splstm2_N2208_S150_B128_sample_1405.txt ├── t8_splstm2_N2208_S150_B128_sample_1408.txt ├── t8_splstm2_N2208_S150_B128_sample_1410.txt ├── t8_splstm2_N2208_S150_B128_sample_1411.txt ├── t8_splstm2_N2208_S150_B128_sample_1421.txt ├── t8_splstm2_N2208_S150_B128_sample_1445.txt ├── t8_splstm2_N2208_S150_B128_sample_1450.txt ├── t8_splstm2_N2208_S150_B128_sample_1459.txt ├── t8_splstm2_N2208_S150_B128_sample_1466.txt ├── t8_splstm2_N2208_S150_B128_sample_1470.txt ├── t8_splstm2_N2208_S150_B128_sample_1475.txt ├── t8_splstm2_N2208_S150_B128_sample_1494.txt ├── t8_splstm2_N2208_S150_B128_sample_1516.txt ├── t8_splstm2_N2208_S150_B128_sample_1534.txt ├── t8_splstm2_N2208_S150_B128_sample_1578.txt ├── t8_splstm2_N2208_S150_B128_sample_1613.txt ├── t8_splstm2_N2208_S150_B128_sample_1661.txt ├── t8_splstm2_N2208_S150_B128_sample_1794.txt ├── text8_2lstm_N2304_S150_B128_sample_1336.txt ├── text8_2lstm_N2304_S150_B128_sample_1341.txt ├── text8_2lstm_N2304_S150_B128_sample_1344.txt ├── text8_2lstm_N2304_S150_B128_sample_1346.txt ├── text8_2lstm_N2304_S150_B128_sample_1347.txt ├── text8_2lstm_N2304_S150_B128_sample_1350.txt ├── text8_2lstm_N2304_S150_B128_sample_1352.txt ├── text8_2lstm_N2304_S150_B128_sample_1353.txt ├── text8_2lstm_N2304_S150_B128_sample_1356.txt ├── text8_2lstm_N2304_S150_B128_sample_1357.txt ├── text8_2lstm_N2304_S150_B128_sample_1358.txt ├── text8_2lstm_N2304_S150_B128_sample_1359.txt ├── text8_2lstm_N2304_S150_B128_sample_1361.txt ├── text8_2lstm_N2304_S150_B128_sample_1364.txt ├── text8_2lstm_N2304_S150_B128_sample_1366.txt ├── text8_2lstm_N2304_S150_B128_sample_1369.txt ├── text8_2lstm_N2304_S150_B128_sample_1372.txt ├── text8_2lstm_N2304_S150_B128_sample_1373.txt ├── text8_2lstm_N2304_S150_B128_sample_1379.txt ├── text8_2lstm_N2304_S150_B128_sample_1383.txt ├── text8_2lstm_N2304_S150_B128_sample_1385.txt ├── text8_2lstm_N2304_S150_B128_sample_1386.txt ├── text8_2lstm_N2304_S150_B128_sample_1389.txt ├── text8_2lstm_N2304_S150_B128_sample_1391.txt ├── text8_2lstm_N2304_S150_B128_sample_1396.txt ├── text8_2lstm_N2304_S150_B128_sample_1429.txt ├── text8_2lstm_N2304_S150_B128_sample_1441.txt ├── text8_2lstm_N2304_S150_B128_sample_1444.txt ├── text8_2lstm_N2304_S150_B128_sample_1486.txt ├── text8_2lstm_N2304_S150_B128_sample_1505.txt ├── text8_2lstm_N2304_S150_B128_sample_1547.txt ├── text8_2lstm_N2304_S150_B128_sample_1662.txt ├── text8_2lstm_N2304_S150_B128_sample_2775.txt ├── text8_2lstm_N2304_S150_B128_sample_4166.txt ├── text8_2lstm_N2304_S150_B128_sample_4176.txt ├── text8_2lstm_N2304_S150_B128_sample_4245.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1320.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1321.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1324.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1325.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1326.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1327.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1329.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1330.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1331.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1332.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1333.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1334.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1335.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1336.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1337.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1338.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1339.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1340.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1341.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1342.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1343.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1344.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1345.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1346.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1347.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1348.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1349.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1350.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1351.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1352.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1353.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1354.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1355.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1356.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1357.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1358.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1359.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1360.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1361.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1362.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1365.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1366.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1367.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1368.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1370.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1372.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1374.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1375.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1377.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1378.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1381.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1383.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1384.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1386.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1387.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1390.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1391.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1392.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1394.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1395.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1397.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1401.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1404.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1405.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1406.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1414.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1416.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1420.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1421.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1431.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1432.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1438.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1444.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1448.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1454.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1458.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1461.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1464.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1469.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1474.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1485.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1489.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1505.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1528.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1556.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1578.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1618.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1653.txt ├── text8_alstm2_hard_N2208_S75_B128_sample_1773.txt ├── text8_aslstm2_hard_N128_S15_B16_sample_6635.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1316.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1322.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1324.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1325.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1326.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1328.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1332.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1333.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1334.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1335.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1336.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1337.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1338.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1339.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1340.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1341.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1342.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1343.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1344.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1345.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1346.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1347.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1348.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1349.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1350.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1351.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1352.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1353.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1354.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1355.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1356.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1357.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1358.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1359.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1361.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1362.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1363.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1365.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1366.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1367.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1368.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1370.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1371.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1372.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1373.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1375.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1376.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1377.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1378.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1379.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1381.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1386.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1387.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1388.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1391.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1393.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1396.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1404.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1411.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1436.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1452.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1458.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1497.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1592.txt ├── text8_aslstm2_hard_N3200_S150_B128_sample_1751.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1448.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1451.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1459.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1460.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1465.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1466.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1494.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1498.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1510.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1522.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1578.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1591.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1645.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1752.txt ├── text8_clstm2_0702_N2800_S75_B128_sample_1988.txt ├── text8_clstm4_N1536_S150_B128_sample_1338.txt ├── text8_clstm4_N1536_S150_B128_sample_1343.txt ├── text8_clstm4_N1536_S150_B128_sample_1344.txt ├── text8_clstm4_N1536_S150_B128_sample_1346.txt ├── text8_clstm4_N1536_S150_B128_sample_1347.txt ├── text8_clstm4_N1536_S150_B128_sample_1349.txt ├── text8_clstm4_N1536_S150_B128_sample_1352.txt ├── text8_clstm4_N1536_S150_B128_sample_1354.txt ├── text8_clstm4_N1536_S150_B128_sample_1355.txt ├── text8_clstm4_N1536_S150_B128_sample_1356.txt ├── text8_clstm4_N1536_S150_B128_sample_1357.txt ├── text8_clstm4_N1536_S150_B128_sample_1358.txt ├── text8_clstm4_N1536_S150_B128_sample_1359.txt ├── text8_clstm4_N1536_S150_B128_sample_1360.txt ├── text8_clstm4_N1536_S150_B128_sample_1361.txt ├── text8_clstm4_N1536_S150_B128_sample_1362.txt ├── text8_clstm4_N1536_S150_B128_sample_1363.txt ├── text8_clstm4_N1536_S150_B128_sample_1364.txt ├── text8_clstm4_N1536_S150_B128_sample_1365.txt ├── text8_clstm4_N1536_S150_B128_sample_1366.txt ├── text8_clstm4_N1536_S150_B128_sample_1367.txt ├── text8_clstm4_N1536_S150_B128_sample_1368.txt ├── text8_clstm4_N1536_S150_B128_sample_1369.txt ├── text8_clstm4_N1536_S150_B128_sample_1370.txt ├── text8_clstm4_N1536_S150_B128_sample_1371.txt ├── text8_clstm4_N1536_S150_B128_sample_1372.txt ├── text8_clstm4_N1536_S150_B128_sample_1373.txt ├── text8_clstm4_N1536_S150_B128_sample_1374.txt ├── text8_clstm4_N1536_S150_B128_sample_1375.txt ├── text8_clstm4_N1536_S150_B128_sample_1376.txt ├── text8_clstm4_N1536_S150_B128_sample_1377.txt ├── text8_clstm4_N1536_S150_B128_sample_1378.txt ├── text8_clstm4_N1536_S150_B128_sample_1379.txt ├── text8_clstm4_N1536_S150_B128_sample_1380.txt ├── text8_clstm4_N1536_S150_B128_sample_1381.txt ├── text8_clstm4_N1536_S150_B128_sample_1382.txt ├── text8_clstm4_N1536_S150_B128_sample_1383.txt ├── text8_clstm4_N1536_S150_B128_sample_1384.txt ├── text8_clstm4_N1536_S150_B128_sample_1385.txt ├── text8_clstm4_N1536_S150_B128_sample_1386.txt ├── text8_clstm4_N1536_S150_B128_sample_1387.txt ├── text8_clstm4_N1536_S150_B128_sample_1390.txt ├── text8_clstm4_N1536_S150_B128_sample_1391.txt ├── text8_clstm4_N1536_S150_B128_sample_1392.txt ├── text8_clstm4_N1536_S150_B128_sample_1393.txt ├── text8_clstm4_N1536_S150_B128_sample_1394.txt ├── text8_clstm4_N1536_S150_B128_sample_1395.txt ├── text8_clstm4_N1536_S150_B128_sample_1397.txt ├── text8_clstm4_N1536_S150_B128_sample_1399.txt ├── text8_clstm4_N1536_S150_B128_sample_1400.txt ├── text8_clstm4_N1536_S150_B128_sample_1401.txt ├── text8_clstm4_N1536_S150_B128_sample_1402.txt ├── text8_clstm4_N1536_S150_B128_sample_1404.txt ├── text8_clstm4_N1536_S150_B128_sample_1405.txt ├── text8_clstm4_N1536_S150_B128_sample_1406.txt ├── text8_clstm4_N1536_S150_B128_sample_1408.txt ├── text8_clstm4_N1536_S150_B128_sample_1411.txt ├── text8_clstm4_N1536_S150_B128_sample_1414.txt ├── text8_clstm4_N1536_S150_B128_sample_1426.txt ├── text8_clstm4_N1536_S150_B128_sample_1441.txt ├── text8_clstm4_N1536_S150_B128_sample_1466.txt ├── text8_clstm4_N1536_S150_B128_sample_1486.txt ├── text8_clstm4_N1536_S150_B128_sample_1564.txt ├── text8_clstm4_N1536_S150_B128_sample_1606.txt ├── text8_clstm4_N1536_S150_B128_sample_1750.txt ├── text8_clstm4_N1536_S150_B128_sample_2414.txt ├── text8_clstm_0702_N128_S15_B4_sample_3750.txt ├── text8_clstm_0702_N256_S15_B16_sample_3698.txt ├── text8_clstm_0702_N64_S5_B4_sample_3945.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1376.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1377.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1384.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1386.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1390.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1391.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1394.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1395.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1396.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1400.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1402.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1404.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1410.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1414.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1419.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1433.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1435.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1440.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1468.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1472.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1480.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1518.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1564.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1601.txt ├── text8_dolstm2_0626_N2208_S150_B128_sample_1737.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1353.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1359.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1361.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1363.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1369.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1370.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1371.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1386.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1388.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1389.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1395.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1402.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1404.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1406.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1408.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1412.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1414.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1415.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1447.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1455.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1464.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1477.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1502.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1503.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1565.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1633.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1686.txt ├── text8_dolstm2_0626_N4000_S75_B128_sample_1883.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1374.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1377.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1384.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1386.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1392.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1393.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1394.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1396.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1400.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1405.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1406.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1412.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1414.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1417.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1418.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1423.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1427.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1432.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1436.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1440.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1441.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1457.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1474.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1480.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1496.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1522.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1541.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1580.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1621.txt ├── text8_dolstm4_0626_N1536_S125_B128_sample_1751.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1409.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1422.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1423.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1426.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1429.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1430.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1437.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1438.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1439.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1440.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1442.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1450.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1451.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1465.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1466.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1468.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1479.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1486.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1491.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1509.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1538.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1549.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1557.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1605.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1630.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1701.txt ├── text8_dolstm8_0626_N1024_S125_B128_sample_1842.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1339.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1343.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1348.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1349.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1350.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1351.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1353.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1354.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1355.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1356.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1357.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1358.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1359.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1360.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1361.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1362.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1363.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1364.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1365.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1366.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1367.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1368.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1369.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1370.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1371.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1372.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1373.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1374.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1375.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1376.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1377.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1378.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1379.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1380.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1381.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1382.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1383.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1384.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1385.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1386.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1387.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1388.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1389.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1390.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1391.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1392.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1393.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1394.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1395.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1396.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1397.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1398.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1399.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1400.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1401.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1403.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1404.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1408.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1414.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1418.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1424.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1427.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1458.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1462.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1465.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1520.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1581.txt ├── text8_hhlstm4_N1536_S150_B128_sample_1703.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2569.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2599.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2616.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2626.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2628.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2640.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2660.txt ├── text8_hhlstm4_N1536_S150_B128_sample_2792.txt ├── text8_hhlstm4_N1536_S150_B128_sample_4253.txt ├── text8_hlstm4_N1536_S150_B128_sample_1356.txt ├── text8_hlstm4_N1536_S150_B128_sample_1362.txt ├── text8_hlstm4_N1536_S150_B128_sample_1363.txt ├── text8_hlstm4_N1536_S150_B128_sample_1364.txt ├── text8_hlstm4_N1536_S150_B128_sample_1365.txt ├── text8_hlstm4_N1536_S150_B128_sample_1366.txt ├── text8_hlstm4_N1536_S150_B128_sample_1367.txt ├── text8_hlstm4_N1536_S150_B128_sample_1369.txt ├── text8_hlstm4_N1536_S150_B128_sample_1370.txt ├── text8_hlstm4_N1536_S150_B128_sample_1372.txt ├── text8_hlstm4_N1536_S150_B128_sample_1373.txt ├── text8_hlstm4_N1536_S150_B128_sample_1374.txt ├── text8_hlstm4_N1536_S150_B128_sample_1375.txt ├── text8_hlstm4_N1536_S150_B128_sample_1377.txt ├── text8_hlstm4_N1536_S150_B128_sample_1378.txt ├── text8_hlstm4_N1536_S150_B128_sample_1379.txt ├── text8_hlstm4_N1536_S150_B128_sample_1380.txt ├── text8_hlstm4_N1536_S150_B128_sample_1381.txt ├── text8_hlstm4_N1536_S150_B128_sample_1382.txt ├── text8_hlstm4_N1536_S150_B128_sample_1383.txt ├── text8_hlstm4_N1536_S150_B128_sample_1384.txt ├── text8_hlstm4_N1536_S150_B128_sample_1386.txt ├── text8_hlstm4_N1536_S150_B128_sample_1387.txt ├── text8_hlstm4_N1536_S150_B128_sample_1388.txt ├── text8_hlstm4_N1536_S150_B128_sample_1389.txt ├── text8_hlstm4_N1536_S150_B128_sample_1390.txt ├── text8_hlstm4_N1536_S150_B128_sample_1391.txt ├── text8_hlstm4_N1536_S150_B128_sample_1392.txt ├── text8_hlstm4_N1536_S150_B128_sample_1393.txt ├── text8_hlstm4_N1536_S150_B128_sample_1394.txt ├── text8_hlstm4_N1536_S150_B128_sample_1395.txt ├── text8_hlstm4_N1536_S150_B128_sample_1396.txt ├── text8_hlstm4_N1536_S150_B128_sample_1397.txt ├── text8_hlstm4_N1536_S150_B128_sample_1398.txt ├── text8_hlstm4_N1536_S150_B128_sample_1405.txt ├── text8_hlstm4_N1536_S150_B128_sample_1411.txt ├── text8_hlstm4_N1536_S150_B128_sample_1413.txt ├── text8_hlstm4_N1536_S150_B128_sample_1420.txt ├── text8_hlstm4_N1536_S150_B128_sample_1421.txt ├── text8_hlstm4_N1536_S150_B128_sample_1423.txt ├── text8_hlstm4_N1536_S150_B128_sample_1429.txt ├── text8_hlstm4_N1536_S150_B128_sample_1432.txt ├── text8_hlstm4_N1536_S150_B128_sample_1446.txt ├── text8_hlstm4_N1536_S150_B128_sample_1457.txt ├── text8_hlstm4_N1536_S150_B128_sample_1458.txt ├── text8_hlstm4_N1536_S150_B128_sample_1468.txt ├── text8_hlstm4_N1536_S150_B128_sample_1484.txt ├── text8_hlstm4_N1536_S150_B128_sample_1490.txt ├── text8_hlstm4_N1536_S150_B128_sample_1492.txt ├── text8_hlstm4_N1536_S150_B128_sample_1520.txt ├── text8_hlstm4_N1536_S150_B128_sample_1521.txt ├── text8_hlstm4_N1536_S150_B128_sample_1525.txt ├── text8_hlstm4_N1536_S150_B128_sample_1563.txt ├── text8_hlstm4_N1536_S150_B128_sample_1584.txt ├── text8_hlstm4_N1536_S150_B128_sample_1605.txt ├── text8_hlstm4_N1536_S150_B128_sample_1657.txt ├── text8_hlstm4_N1536_S150_B128_sample_1697.txt └── text8_hlstm4_N1536_S150_B128_sample_1856.txt └── src ├── containers ├── c_matrix.h ├── cl_matrix.h ├── cu_kernels.cu ├── cu_kernels.h ├── cu_matrix.h ├── datatype.h ├── io.h └── matrixarray.h ├── deeplstm.h ├── gradcheck.h ├── layers ├── alstm.h ├── attLSTM.h ├── clstm.h ├── cu_softmax.h ├── dolstm.h ├── dummy.h ├── hardattLSTM.h ├── hlstm.h ├── hmlstm.h ├── lstm.h ├── lstm_cuda.h ├── lstm_cuda_no_x.h ├── lstm_devel.h ├── softmax.h ├── splstm.h └── srnn.h ├── opencl └── clUtils.h ├── optimization.h ├── parameters.h ├── serialization.h ├── state.h ├── timelayer.h ├── timer.h └── utils.h /1607.03085v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/1607.03085v2.pdf -------------------------------------------------------------------------------- /cereal/sandbox/sandbox_shared_lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(sandbox_vs_dll SHARED base.cpp derived.cpp) 2 | -------------------------------------------------------------------------------- /cereal/vs2013/.gitignore: -------------------------------------------------------------------------------- 1 | */Debug 2 | */Release 3 | */x64 4 | -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1210.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1222.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1229.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1232.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1238.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1238.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1243.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1243.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1281.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1281.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1311.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1315.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1315.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1321.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1333.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1333.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1342.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1348.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1348.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1351.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1351.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1353.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1353.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1386.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1395.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1395.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1402.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1402.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1406.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1429.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1429.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1437.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1443.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1448.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1450.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1461.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1461.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1466.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1466.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1520.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1520.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1591.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1591.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1627.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1705.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1705.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1834.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1834.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_1938.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_1938.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_4701.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_4701.txt -------------------------------------------------------------------------------- /samples/enwik10_2lstm_N2304_S150_B128_sample_5392.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik10_2lstm_N2304_S150_B128_sample_5392.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1592.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1592.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1594.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1594.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1596.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1611.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1613.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1616.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1616.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1627.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1645.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1645.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1647.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1647.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1659.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1665.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1665.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1667.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1667.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1672.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1672.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1679.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1679.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1728.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1728.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1797.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1797.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1876.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S25_B256_sample_1876.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1500.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1503.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1504.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1504.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1508.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1508.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1510.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1511.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1517.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1524.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1527.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1527.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1529.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1529.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1530.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1532.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1532.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1540.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1540.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1544.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1544.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1546.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1546.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1548.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1548.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1550.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1551.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1553.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1553.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1590.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1590.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1618.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1618.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1620.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1620.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1633.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1633.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1659.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1683.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N1500_S75_B256_sample_1683.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1435.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1459.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1468.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1468.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1469.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1474.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1474.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1476.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1479.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1479.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1484.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1484.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1486.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1489.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1489.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1491.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1491.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1499.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1501.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1501.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1503.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1510.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1512.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1515.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1518.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1518.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1520.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1520.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1527.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1527.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1538.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1538.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1541.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1544.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1544.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1549.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1549.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1556.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1559.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1575.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1575.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1596.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1601.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1630.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1630.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1637.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1637.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1640.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1640.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1711.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1747.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1747.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1824.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1824.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1896.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_1896.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N2000_S250_B64_sample_2098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N2000_S250_B64_sample_2098.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1409.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1410.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1414.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1417.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1417.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1427.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1430.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1430.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1431.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1431.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1433.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1433.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1435.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1436.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1436.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1438.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1438.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1443.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1444.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1444.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1445.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1445.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1451.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1451.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1454.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1456.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1471.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1471.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1475.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1475.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1477.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1486.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1487.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1487.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1488.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1488.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1497.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1497.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1505.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1505.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1511.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1521.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1553.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1553.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1557.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1557.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1586.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1586.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1596.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1612.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1612.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1636.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1636.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1674.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1674.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1681.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1681.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1696.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1696.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1726.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1726.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1766.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1766.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1877.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1877.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1965.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_1965.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm2_N4000_S75_B128_sample_2185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm2_N4000_S75_B128_sample_2185.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1524.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1529.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1529.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1536.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1536.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1538.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1538.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1543.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1543.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1544.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1544.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1552.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1552.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1553.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1553.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1556.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1560.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1560.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1561.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1561.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1571.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1587.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1587.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1589.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1589.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1591.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1591.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1592.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1592.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1596.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1600.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1614.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1614.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1619.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1619.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1628.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1628.txt -------------------------------------------------------------------------------- /samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1633.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_0626_alstm4_N1536_S75_B256_sample_1633.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1445.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1445.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1469.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1472.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1476.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1489.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1489.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1495.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1495.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1496.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1496.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1497.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1497.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1511.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1512.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1519.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1528.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1531.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1533.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1559.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1587.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1587.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_1819.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_1819.txt -------------------------------------------------------------------------------- /samples/enwik8_clstm4_N1536_S150_B128_sample_2120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_clstm4_N1536_S150_B128_sample_2120.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1442.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1442.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1443.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1456.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1457.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1457.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1461.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1461.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1462.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1462.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1469.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1470.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1470.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1477.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1483.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1483.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1491.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1491.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1509.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1516.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1516.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1525.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1526.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1526.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1528.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1531.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1534.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1534.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1538.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1538.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1539.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1539.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1540.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1540.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1541.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1545.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1545.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1549.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1549.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1550.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1552.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1552.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1559.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1565.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1565.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1566.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1566.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1567.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1567.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1568.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1568.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1575.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1575.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1579.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1579.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1582.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1582.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1595.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1595.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1599.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1599.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1600.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1607.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1607.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1608.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1608.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1610.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1613.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1624.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1624.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1629.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1629.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1634.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1634.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1661.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1661.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1715.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1715.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_1940.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_1940.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_2198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_2198.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S150_B128_sample_2340.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S150_B128_sample_2340.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1454.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1465.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1465.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1478.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1478.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1484.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1484.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1489.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1489.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1493.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1494.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1494.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1499.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1501.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1501.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1509.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1517.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1518.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1518.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_1763.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_1763.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm2_N2208_S75_B256_sample_2037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm2_N2208_S75_B256_sample_2037.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1449.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1449.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1452.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1452.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1461.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1461.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1464.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1464.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1476.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1479.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1479.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1483.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1483.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1507.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1517.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1535.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1535.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1571.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1584.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1584.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1593.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1593.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1598.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1598.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1625.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1625.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_1736.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_1736.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_2472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_2472.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_7162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_7162.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm3_N1890_S150_B128_sample_9752.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm3_N1890_S150_B128_sample_9752.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1445.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1445.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1454.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1460.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1460.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1462.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1462.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1472.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1480.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1480.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1492.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1493.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1497.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1497.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1507.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1512.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1513.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1515.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1516.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1516.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1521.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1523.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1523.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1528.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1530.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1539.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1539.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1542.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1542.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1597.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1597.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1623.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1623.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1669.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1669.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1725.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1725.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_1831.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_1831.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_2059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_2059.txt -------------------------------------------------------------------------------- /samples/enwik8_hlstm4_N1536_S150_B128_sample_2339.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_hlstm4_N1536_S150_B128_sample_2339.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1482.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1482.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1530.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1537.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1537.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1555.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1563.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1563.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1621.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1621.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N2000_S75_B128_sample_1714.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N2000_S75_B128_sample_1714.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1434.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1434.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1454.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1460.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1460.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1462.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1462.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1463.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1463.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1465.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1465.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1473.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1473.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1495.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1495.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1503.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1550.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1571.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1588.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1588.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N3000_S75_B128_sample_1657.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N3000_S75_B128_sample_1657.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1435.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1440.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1440.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1441.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1442.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1442.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1447.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1447.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1448.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1464.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1464.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1473.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1473.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1478.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1478.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1479.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1479.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1484.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1484.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1486.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1488.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1488.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1493.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1499.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1507.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1509.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1512.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1521.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1524.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1528.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1536.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1536.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1541.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1551.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1554.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1554.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1555.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1571.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1577.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1577.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1580.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1580.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1599.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1599.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1606.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1613.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1625.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1625.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_0703_N4000_S75_B128_sample_1626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_0703_N4000_S75_B128_sample_1626.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1463.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1463.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1471.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1471.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1477.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1483.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1483.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1488.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1488.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1489.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1489.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1491.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1491.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1502.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1511.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1514.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1519.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1529.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1529.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1538.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1538.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1556.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1562.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1562.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1580.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1580.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1604.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1711.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_1843.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_1843.txt -------------------------------------------------------------------------------- /samples/enwik8_lstm_N3200_S150_B128_sample_2258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_lstm_N3200_S150_B128_sample_2258.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1435.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1437.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1439.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1439.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1449.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1449.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1451.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1451.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1452.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1452.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1456.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1457.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1457.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1459.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1464.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1464.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1466.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1466.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1467.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1471.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1471.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1476.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1477.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1482.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1482.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1486.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1488.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1488.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1490.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1492.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1499.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1500.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1505.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1505.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1506.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1506.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1519.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1525.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1530.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1535.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1535.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1539.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1539.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1556.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1593.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1593.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1659.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1663.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1663.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1710.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_1750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_1750.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S150_B128_sample_2077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S150_B128_sample_2077.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1447.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1447.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1448.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1450.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1456.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1461.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1461.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1466.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1466.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1471.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1471.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1472.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1481.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1481.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1492.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1502.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1503.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1515.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1522.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1522.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1533.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1534.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1534.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1538.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1538.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1539.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1539.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1544.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1544.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1567.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1567.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1568.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1568.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1601.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1627.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1651.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1651.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1685.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1685.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1738.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1738.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm2_N2208_S75_B256_sample_1794.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm2_N2208_S75_B256_sample_1794.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1431.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1431.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1451.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1451.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1477.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1484.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1484.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1485.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1485.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1492.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1502.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1503.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1505.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1505.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1507.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1508.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1508.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1512.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1518.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1518.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1519.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1531.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1533.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1535.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1535.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1547.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1547.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1555.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1559.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1562.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1562.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1564.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1564.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1577.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1577.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1601.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1606.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1628.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1628.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1630.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1630.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1651.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1651.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1659.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1695.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1695.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1710.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1757.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1757.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1792.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1792.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1879.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1879.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_1980.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_1980.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N1536_S150_B128_sample_2198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N1536_S150_B128_sample_2198.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1680.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1680.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1719.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1719.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1722.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1724.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1724.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1731.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1731.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1757.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1757.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1760.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1760.txt -------------------------------------------------------------------------------- /samples/enwik8_splstm4_N512_S150_B128_sample_1855.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik8_splstm4_N512_S150_B128_sample_1855.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1104.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1114.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1118.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1121.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1122.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1137.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1138.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1153.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1162.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1171.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1176.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1188.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1191.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1193.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1195.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1207.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1218.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1220.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1221.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1222.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1235.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1236.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1261.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1272.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1280.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1287.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1287.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1289.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1307.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1309.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1309.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1313.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1313.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1320.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1336.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1336.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1359.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1359.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1433.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1433.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1492.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1510.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1533.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1642.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1642.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_1734.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_1734.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_5213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_5213.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_5220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_5220.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_5222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_5222.txt -------------------------------------------------------------------------------- /samples/enwik9_2lstm_N2304_S150_B128_sample_5253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_2lstm_N2304_S150_B128_sample_5253.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1175.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1178.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1183.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1186.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1199.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1207.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1211.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1215.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1216.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1225.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1233.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1233.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1238.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1238.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1248.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1249.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1284.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1289.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1290.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1292.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1325.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1325.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1334.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1343.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1351.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1351.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1352.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1352.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1413.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_1499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_1499.txt -------------------------------------------------------------------------------- /samples/enwik9_clstm4_N1536_S150_B128_sample_2253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_clstm4_N1536_S150_B128_sample_2253.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1160.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1167.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1168.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1169.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1177.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1185.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1186.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1187.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1204.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1212.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1224.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1239.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1248.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1250.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1252.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1268.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1272.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1273.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1294.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1294.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1301.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1312.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1312.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1314.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1314.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1326.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1326.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1327.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1327.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1342.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1410.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1412.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1412.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1430.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1430.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1445.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1445.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1481.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1481.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1483.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1483.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1535.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1535.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1634.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1634.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1656.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1656.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_1681.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_1681.txt -------------------------------------------------------------------------------- /samples/enwik9_hlstm4_N1536_S150_B128_sample_2358.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_hlstm4_N1536_S150_B128_sample_2358.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1254.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1256.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1261.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1262.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1262.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1274.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1274.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1290.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1298.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1298.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1300.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1300.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1301.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1304.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1304.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1305.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1305.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1314.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1314.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1319.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1319.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1323.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1323.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1324.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1324.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1328.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1328.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1333.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1333.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1338.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1338.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1341.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1342.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1345.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1364.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1364.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1367.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1367.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1369.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1369.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1372.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1372.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1373.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1373.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1375.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1375.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1381.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1381.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1394.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1394.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1397.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1397.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1398.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1398.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1403.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1403.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1413.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1417.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1417.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1433.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1433.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1446.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1446.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1447.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1447.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1449.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1449.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1455.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1464.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1464.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1472.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1480.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1480.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1482.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1482.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1502.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1523.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1523.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1531.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1557.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1557.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1567.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1567.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1600.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1615.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1615.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1676.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1676.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1804.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1804.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_1930.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_1930.txt -------------------------------------------------------------------------------- /samples/enwik9_splstm4_N1536_S150_B128_sample_2112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/enwik9_splstm4_N1536_S150_B128_sample_2112.txt -------------------------------------------------------------------------------- /samples/t8_hlstm2_N2208_S150_B128_sample_1514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/t8_hlstm2_N2208_S150_B128_sample_1514.txt -------------------------------------------------------------------------------- /samples/t8_hlstm2_N2208_S150_B128_sample_1620.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/t8_hlstm2_N2208_S150_B128_sample_1620.txt -------------------------------------------------------------------------------- /samples/t8_hlstm2_N2208_S150_B128_sample_1847.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/t8_hlstm2_N2208_S150_B128_sample_1847.txt -------------------------------------------------------------------------------- /samples/text8_aslstm2_hard_N128_S15_B16_sample_6635.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_aslstm2_hard_N128_S15_B16_sample_6635.txt -------------------------------------------------------------------------------- /samples/text8_clstm4_N1536_S150_B128_sample_1750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_clstm4_N1536_S150_B128_sample_1750.txt -------------------------------------------------------------------------------- /samples/text8_clstm4_N1536_S150_B128_sample_2414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_clstm4_N1536_S150_B128_sample_2414.txt -------------------------------------------------------------------------------- /samples/text8_clstm_0702_N128_S15_B4_sample_3750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_clstm_0702_N128_S15_B4_sample_3750.txt -------------------------------------------------------------------------------- /samples/text8_clstm_0702_N256_S15_B16_sample_3698.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_clstm_0702_N256_S15_B16_sample_3698.txt -------------------------------------------------------------------------------- /samples/text8_clstm_0702_N64_S5_B4_sample_3945.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_clstm_0702_N64_S5_B4_sample_3945.txt -------------------------------------------------------------------------------- /samples/text8_hhlstm4_N1536_S150_B128_sample_1418.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krocki/ArrayLSTM/115a4b691550a403dde6e2356db20b3abd54e4c2/samples/text8_hhlstm4_N1536_S150_B128_sample_1418.txt --------------------------------------------------------------------------------