Меню

Ошибка call stack functions

Что означает ошибка Uncaught RangeError: Maximum call stack size exceeded

Что означает ошибка Uncaught RangeError: Maximum call stack size exceeded

Это когда вызывается слишком много вложенных функций

Это когда вызывается слишком много вложенных функций

Ситуация: заказчик попросил разместить на странице кликабельную картинку, а чтобы на неё обратило внимание больше посетителей, попросил сделать вокруг неё моргающую рамку. Логика моргания в скрипте очень простая:

  1. В первой функции находим на странице нужный элемент.
  2. Добавляем рамку с какой-то задержкой (чтобы она какое-то время была на экране).
  3. Вызываем функцию убирания рамки.
  4. Внутри второй функции находим тот же элемент на странице.
  5. Убираем рамку с задержкой.
  6. Вызываем первую функцию добавления рамки.

Код простой, поэтому делаем всё в одном файле:

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>Pulse</title>
	<style type="text/css">
	/*	рамка, которая будет моргать	*/
		.pulse { box-shadow: 0px 0px 4px 4px #AEA79F; }
	</style>
</head>
<body>
	<div id="pulseDiv"> 
    	<a href="#">
      		<div id="advisersDiv">
        		<img src="https://thecode.media/wp-content/uploads/2020/08/photo_2020-08-05-12.04.57.jpeg">
        	</div>
      	</a>
</div>
<!-- подключаем jQuery -->
<script src="https://yastatic.net/jquery/3.3.1/jquery.min.js" type="text/javascript"></script>
<!-- наш скрипт -->
<script type="text/javascript">
	// добавляем рамку
	function fadeIn() {
		// находим нужный элемент и добавляем рамку с задержкой
  	$('#pulseDiv').find('div#advisersDiv').delay(400).addClass("pulse");
  	// затем убираем рамку
  	fadeOut();
	};
	// убираем рамку
	function fadeOut() {
		// находим нужный элемент и убираем рамку с задержкой
   	$('#pulseDiv').find('div#advisersDiv').delay(400).removeClass("pulse");
   	// затем добавляем 
   	fadeIn();
	};
	// запускаем моргание рамки
	fadeIn();
</script>

</body>
</html>

Но при открытии страницы в браузере мы видим, что ничего не моргает, а в консоли появилась ошибка:

❌ Uncaught RangeError: Maximum call stack size exceeded

Что это значит: в браузере произошло переполнение стека вызовов и из-за этого он не может больше выполнять этот скрипт.

Переполнения стека простыми словами означает вот что:

  1. Когда компьютер что-то делает, он это делает последовательно — 1, 2, 3, 4.
  2. Иногда ему нужно отвлечься от одного и сходить сделать что-то другое — а, б, в, г, д. Получается что-то вроде 1, 2, 3 → а, б, в, г, д → 4.
  3. Вот эти переходы 3 → а и д → 4 — это компьютеру нужно запомнить, что он выполнял пункт 3, и потом к нему вернуться.
  4. Каждое запоминание, что компьютер бросил и куда ему нужно вернуться, — это называется «вызов».
  5. Вызовы хранятся в стеке вызовов. Это стопка таких ссылок типа «когда закончишь вот это, вернись туда».
  6. Стек не резиновый и может переполняться.

Что делать с ошибкой Uncaught RangeError: Maximum call stack size exceeded

Эта ошибка — классическая ошибка переполнения стека во время выполнения рекурсивных функций.

Рекурсия — это когда мы вызываем функцию внутри самой себя, но чуть с другими параметрами. Когда параметр дойдёт до конечного значения, цепочка разматывается обратно и функция собирает вместе все значения. Это удобно, когда у нас есть чёткий алгоритм подсчёта с понятными правилами вычислений.

В нашем случае рекурсия возникает, когда в конце обеих функций мы вызываем другую: 

  1. Функции начинают бесконтрольно вызывать себя бесконечное число раз.
  2. Стек вызовов начинает запоминать вызов каждой функции, чтобы, когда она закончится, вернуться к тому, что было раньше.
  3. Стек — это определённая область памяти, у которой есть свой объём.
  4. Вызовы не заканчиваются, и стек переполняется — в него больше нельзя записать вызов новой функции, чтобы потом вернуться обратно.
  5. Браузер видит всё это безобразие и останавливает скрипт.

То же самое будет, если мы попробуем запустить простую рекурсию слишком много раз:

Что означает ошибка Uncaught RangeError: Maximum call stack size exceeded

Как исправить ошибку Uncaught RangeError: Maximum call stack size exceeded

Самый простой способ исправить эту ошибку — контролировать количество рекурсивных вызовов, например проверять это значение на входе. Если это невозможно, то стоит подумать, как можно переделать алгоритм, чтобы обойтись без рекурсии.

В нашем случае проблема возникает из-за того, что мы вызывали вторые функции бесконтрольно, поэтому они множились без ограничений. Решение — ограничить вызов функции одной секундой — так они будут убираться из стека и переполнения не произойдёт:

<script type="text/javascript">
// добавляем рамку
function fadeIn() {
	// находим нужный элемент и добавляем рамку с задержкой
	$('#pulseDiv').find('div#advisersDiv').delay(400).addClass("pulse");
	// через секунду убираем рамку
	setTimeout(fadeOut,1000)
};
// убираем рамку
function fadeOut() {
	// находим нужный элемент и убираем рамку с задержкой
 	$('#pulseDiv').find('div#advisersDiv').delay(400).removeClass("pulse");
 	// через секунду добавляем рамку
	setTimeout(fadeIn,1000)
};
// запускаем моргание рамки
fadeIn();
</script>

Что означает ошибка Uncaught RangeError: Maximum call stack size exceeded

Вёрстка:

Кирилл Климентьев

Получите ИТ-профессию

В «Яндекс Практикуме» можно стать разработчиком, тестировщиком, аналитиком и менеджером цифровых продуктов. Первая часть обучения всегда бесплатная, чтобы попробовать и найти то, что вам по душе. Дальше — программы трудоустройства.

Начать карьеру в ИТ

Получите ИТ-профессию
Получите ИТ-профессию
Получите ИТ-профессию
Получите ИТ-профессию

I am trying to train a simple Neural Network and I got this error, I tried some other answers I find in similar questions and it did not work. I want to classify between TYPE=0 or TYPE=1. In the link at the end is an example of my training dataset.

tensorflow.python.framework.errors_impl.UnimplementedError:  Cast string to float is not supported
     [[node sequential/Cast (defined at /Users/Administrator/Desktop/New folder/ne.py:31) ]] [Op:__inference_train_function_587]

Function call stack:
train_function

this is my NN code

 model = keras.Sequential([
    keras.layers.Dense(1560, input_shape=(6,), activation='relu'),
    keras.layers.Dense(1, activation='sigmoid')
])

    model.compile(optimizer='adam', loss=keras.losses.BinaryCrossentropy(from_logits=True), metrics=['accuracy'])
    
    model.fit(X_train, y_train, batch_size=1,epochs=5)

Here is an example of my dataset in excel format hope that helps

        MPF      MF    PSD   F95    BMI  PARITY TYPE
e001_1  0.0048  0.005   6   0.008   27.6    2   1
e001_2  0.0077  0.005   6   0.008   27.6    2   1
e001_3  0.004   0.005   6   0.008   27.6    2   1
e001_4  0.0024  0.004   6   0.008   27.6    2   1
e001_5  0.0025  0.004   6   0.008   27.6    2   1
e001_6  0.0034  0.004   6   0.008   27.6    2   1
e003_1o 7.52E-04    5.45E-04    6   0.001089918 34  0   0
e003_1o 5.31E-04    5.45E-04    6   0.001089918 34  0   0
e003_1o 6.49E-04    5.45E-04    6   0.001089918 34  0   0
e003_1o 9.98E-04    5.45E-04    6   0.001089918 34  0   0
e003_1o 0.001258642 5.45E-04    6   0.001089918 34  0   0
e003_1o 5.76E-04    5.45E-04    6   0.001089918 34  0   0

Столкнулся с непонятной проблемой, понять истину бага я так и не понял. Что я не делал, игра крашиться. Когда это произошло:
Напали вампиры, сработал мод «Спасаайся кто может», НПС спрятались. Стража начала всех косить. Когда убивают последнего враждебного Трэлла и Вампира — игра крашиться.

[12/18/2018 — 03:21:59AM] Papyrus log opened (PC)
[12/18/2018 — 03:21:59AM] Function GetEffectMagnitudes in the empty state on type Ingredient does not exist. Function will not be flagged as callable from tasklets.
[12/18/2018 — 03:21:59AM] warning: Replacing native function SetDisplayName on unlinked object WornObject.
[12/18/2018 — 03:21:59AM] warning: Replacing native function Notification on unlinked object Debug.
[12/18/2018 — 03:21:59AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[12/18/2018 — 03:21:59AM] Memory page: 128 (min) 512 (max) 76800 (max total)
[12/18/2018 — 03:22:21AM] Cannot open store for class «fnissmquestscript», missing file?
[12/18/2018 — 03:22:21AM] Cannot open store for class «fnissmconfigmenu», missing file?
[12/18/2018 — 03:22:21AM] Cannot open store for class «follower3dnpc», missing file?
[12/18/2018 — 03:22:23AM] Cannot open store for class «_arissa_inpc_behavior», missing file?
[12/18/2018 — 03:22:23AM] Cannot open store for class «chherdingquestscript», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «slncmainquestscript», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «xs2__prkf_xmapassivefingersmi_05112b24», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «xxx_prkf_xxxpassivefingersmit_020a3756», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «zzspidereggsscript», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «zzencSpiderhachlingscript», missing file?
[12/18/2018 — 03:22:24AM] Cannot open store for class «tweakfollowerscript», missing file?

[12/18/2018 — 03:22:38AM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property

это срач от Skooma Whore
 

[12/18/2018 — 03:22:38AM] warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (2B001831) cannot be initialized because the script no longer contains that property

индекс 2В

[12/18/2018 — 03:22:38AM] warning: Property Town on script mf_simplejob_locationchance attached to alias ThePlayer on quest mf_Prostitute_SimpleJob (31001D9C) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property City on script mf_simplejob_locationchance attached to alias ThePlayer on quest mf_Prostitute_SimpleJob (31001D9C) cannot be initialized because the script no longer contains that property

это Radiant Prostitution — это нормально
[12/18/2018 — 03:22:38AM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property

[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias01 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias02 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias03 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias04 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias05 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias06 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias07 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias08 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias09 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:38AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias10 on quest VampireDominationAlias (7A379F0E) because their base types do not match

смотри мод с индексом 7А
[

12/18/2018 — 03:22:38AM] warning: Property ElendrsFlask on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property OcatosPallatine on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property MorgulsTouch on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property TheArchMage on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property BoethiasDeception on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property VerminasPrice on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property Skooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property DDSkooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property LeafSkooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property RoseOfAzura on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property ToughFlesh on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property TheSecondBrain on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property TheContortionist on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property MagesFriend on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property ThiefsDelight on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property

опять Skooma Whore

[12/18/2018 — 03:22:38AM] warning: Property GLOBALSetBooksUnread on script GripBetterSkillBooksScript attached to  (90009A9F) cannot be initialized because the script no longer contains that property

индекс 90

[12/18/2018 — 03:22:38AM] warning: Property WinterholdSymbol01 on script _001_SCRPT_GypsyEyes_Mannequin attached to  (85003946) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:38AM] warning: Property WinterholdSymbol01 on script _001_SCRPT_GypsyEyes_Mannequin attached to  (85003947) cannot be initialized because the script no longer contains that property

индекс 85
[12/18/2018 — 03:22:38AM] warning: Property Cabinable on script CWITelescopeScript attached to  (1C32C9F3) cannot be initialized because the script no longer contains that property

[12/18/2018 — 03:22:38AM] ERROR: Property Alias_FirstActor on script QF_ArRandomnDialogueCitizen0_02000D62 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (1) on <NULL quest> (23199B98) is not the right type
[12/18/2018 — 03:22:38AM] ERROR: Property Alias_Location_ on script QF_ArRandomnDialogueMaid06_0400A518 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (11) on <NULL quest> (23199B98) is not the right type
[12/18/2018 — 03:22:38AM] ERROR: Property Alias_Maid on script QF_ArRandomnDialogueMaid06_0400A518 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (1) on <NULL quest> (23199B98) is not the right type

индекс 23

[12/18/2018 — 03:22:38AM] warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property

что-то ломает тебе  квест за Хирсина

[12/18/2018 — 03:22:38AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueCitizenDealer (231C24A8) cannot be bound because <NULL form> (2307E22C) is not the right type
[12/18/2018 — 03:22:38AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueDealerCitizen (231A8EF6) cannot be bound because <NULL form> (2307E22C) is not the right type

индес 23

[12/18/2018 — 03:22:39AM] warning: Property MannyTrigger02 on script _001_SCRPT_GypsyEyes_MannyGetDressed attached to  (85004417) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:39AM] warning: Property MannyTrigger01 on script _001_SCRPT_GypsyEyes_MannyGetDressed attached to  (85004417) cannot be initialized because the script no longer contains that property

индекс 85

[12/18/2018 — 03:22:39AM] warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (2B001831) cannot be initialized because the script no longer contains that property

индвекс 2В

[12/18/2018 — 03:22:39AM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:39AM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:39AM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:39AM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property

Skooma Whore

[12/18/2018 — 03:22:39AM] ERROR: Property Alias_Location on script QF_ArRandomnDialoguethreeCit_04001DAF attached to ArRandomnDialoguethreeCitizen03 (23001DAF) cannot be bound because <NULL alias> (6) on <NULL quest> (23001DAF) is not the right type

индекс 23

[12/18/2018 — 03:22:39AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (3100BA71) cannot be initialized because the script no longer contains that property

Radiant Prostirtution

[12/18/2018 — 03:22:39AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueCitizen01 (23000D62) cannot be bound because <NULL form> (2307E22C) is not the right type

индекс 23
[

12/18/2018 — 03:22:39AM] ERROR: File «Unofficial Skyrim Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() — «USLEEP_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:39AM] ERROR: File «Unofficial Dawnguard Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() — «USLEEP_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:39AM] ERROR: File «Unofficial Hearthfire Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() — «USLEEP_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:39AM] ERROR: File «Unofficial Dragonborn Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() — «USLEEP_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «CombatDramaOverhaul.esp» does not exist or is not currently loaded.
stack:

Обычный срач от USLEEP если мод конвертился с привязки к старым патчам
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?

    [alias Player on quest VL_Player (77023F14)].VL_Player.VLLoadGame() — «VL_Player.psc» Line ?
    [alias Player on quest VL_Player (77023F14)].VL_Player.OnInit() — «VL_Player.psc» Line ?

индекс 77

[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
    [POSSMainQst (65000D62)].POSSMainScr.QueueActorState() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.QueueEraseScene() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMainScr.Install() — «POSSMainScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnConfigInit() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].SKI_ConfigBase.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnGameReload() — «POSSMcmScr.psc» Line ?
    [POSSMainQst (65000D62)].POSSMcmScr.OnInit() — «SKI_ConfigBase.psc» Line ?

Индекс 65

[12/18/2018 — 03:22:40AM] ERROR: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
    [DefeatSexCrimeQST (80118C5F)].DefeatSexCrimeQSTscr.OnInit() — «DefeatSexCrimeQSTscr.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call GetName() on a None object, aborting function call
stack:
    [DefeatSexCrimeQST (80118C5F)].DefeatSexCrimeQSTscr.OnInit() — «DefeatSexCrimeQSTscr.psc» Line ?
[12/18/2018 — 03:22:40AM] warning: Assigning None to a non-object variable named «::temp8»
stack:
    [DefeatSexCrimeQST (80118C5F)].DefeatSexCrimeQSTscr.OnInit() — «DefeatSexCrimeQSTscr.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: Cannot call HasKeywordString() on a None object, aborting function call
stack:
    [DefeatSexCrimeQST (80118C5F)].DefeatSexCrimeQSTscr.OnInit() — «DefeatSexCrimeQSTscr.psc» Line ?
[12/18/2018 — 03:22:40AM] warning: Assigning None to a non-object variable named «::temp5»
stack:
    [DefeatSexCrimeQST (80118C5F)].DefeatSexCrimeQSTscr.OnInit() — «DefeatSexCrimeQSTscr.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «Chesko_Frostfall.esp» does not exist or is not currently loaded.
stack:

Индекс 80
 

   <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «Frostfall.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «teg_returntohelgen.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «Keld-Nar.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «ShezriesOldHroldan.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
[12/18/2018 — 03:22:40AM] ERROR: File «ShezrieOldHroldanVer2.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() — «ARTH_LAL_VersionTrackingScript.psc» Line ?
    [ARTHLALVersionTracking (90049F33)].arth_lal_versiontrackingscript.OnInit() — «ARTH_LAL_VersionTrackingScript.psc» Line ?

Индеес 90

[12/18/2018 — 03:22:41AM] Cannot open store for class «consoleutil», missing file?
[12/18/2018 — 03:22:41AM] ERROR: Unable to obtain function call information — returning None
stack:
    [zadQuest (1200F624)].zadbq00.checkBlindfoldDarkFog() — «zadBQ00.psc» Line ?
    [zadQuest (1200F624)].zadbq00.OnInit() — «zadBQ00.psc» Line ?
[12/18/2018 — 03:22:41AM] ERROR: Cannot access an element of a None array

Devious Devices ругается 

stack:
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.SetTextOptionValue() — «SKI_ConfigBase.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.readQuestsFromDirectory() — «mf_handler_config.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnConfigInit() — «mf_handler_config.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnInit() — «SKI_ConfigBase.psc» Line ?
[12/18/2018 — 03:22:41AM] ERROR: Cannot access an element of a None array
stack:
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.SetTextOptionValue() — «SKI_ConfigBase.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.readQuestsFromDirectory() — «mf_handler_config.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnConfigInit() — «mf_handler_config.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnGameReload() — «SKI_ConfigBase.psc» Line ?
    [mf_Prostitute_Handler (31000D62)].mf_handler_config.OnInit() — «SKI_ConfigBase.psc» Line ?

Индекс 31

[12/18/2018 — 03:22:41AM] VM is freezing…
[12/18/2018 — 03:22:41AM] VM is frozen
[12/18/2018 — 03:22:41AM] Reverting game…
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias03 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias10 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias07 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias09 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias02 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias06 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias01 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias05 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias04 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] ERROR: Unable to bind script EnthralledVictimAttachScript to alias VampireEnthrallAlias08 on quest VampireDominationAlias (7A379F0E) because their base types do not match
[12/18/2018 — 03:22:44AM] warning: Property ElendrsFlask on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property OcatosPallatine on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property MorgulsTouch on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property TheArchMage on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property BoethiasDeception on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property VerminasPrice on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property Skooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property DDSkooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property LeafSkooma on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property RoseOfAzura on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property ToughFlesh on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property TheSecondBrain on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property TheContortionist on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property MagesFriend on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property ThiefsDelight on script slsw_effects attached to SLSW_Effects (2701E682) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property GLOBALSetBooksUnread on script GripBetterSkillBooksScript attached to  (90009A9F) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (2B001831) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (27002863) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WinterholdSymbol01 on script _001_SCRPT_GypsyEyes_Mannequin attached to  (85003946) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] warning: Property WinterholdSymbol01 on script _001_SCRPT_GypsyEyes_Mannequin attached to  (85003947) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] ERROR: Property Alias_FirstActor on script QF_ArRandomnDialogueCitizen0_02000D62 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (1) on <NULL quest> (23199B98) is not the right type
[12/18/2018 — 03:22:44AM] ERROR: Property Alias_Location_ on script QF_ArRandomnDialogueMaid06_0400A518 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (11) on <NULL quest> (23199B98) is not the right type
[12/18/2018 — 03:22:44AM] ERROR: Property Alias_Maid on script QF_ArRandomnDialogueMaid06_0400A518 attached to ArRandomnDialogueDrunkInn (23199B98) cannot be bound because <NULL alias> (1) on <NULL quest> (23199B98) is not the right type
[12/18/2018 — 03:22:44AM] warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:44AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueDealerCitizen (231A8EF6) cannot be bound because <NULL form> (2307E22C) is not the right type
[12/18/2018 — 03:22:45AM] ERROR: Property Alias_Location on script QF_ArRandomnDialoguethreeCit_04001DAF attached to ArRandomnDialoguethreeCitizen03 (23001DAF) cannot be bound because <NULL alias> (6) on <NULL quest> (23001DAF) is not the right type
[12/18/2018 — 03:22:45AM] warning: Property MannyTrigger02 on script _001_SCRPT_GypsyEyes_MannyGetDressed attached to  (85004417) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] warning: Property MannyTrigger01 on script _001_SCRPT_GypsyEyes_MannyGetDressed attached to  (85004417) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueCitizenDealer (231C24A8) cannot be bound because <NULL form> (2307E22C) is not the right type
[12/18/2018 — 03:22:45AM] warning: Property Town on script mf_simplejob_locationchance attached to alias ThePlayer on quest mf_Prostitute_SimpleJob (31001D9C) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] warning: Property City on script mf_simplejob_locationchance attached to alias ThePlayer on quest mf_Prostitute_SimpleJob (31001D9C) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] ERROR: Property Q on script QResetScript attached to ArRandomnDialogueCitizen01 (23000D62) cannot be bound because <NULL form> (2307E22C) is not the right type
[12/18/2018 — 03:22:45AM] warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (2B001831) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] warning: Property Cabinable on script CWITelescopeScript attached to  (1C32C9F3) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:22:45AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (3100BA71) cannot be initialized because the script no longer contains that property
[12/18/2018 — 03:23:40AM] Loading game…
[12/18/2018 — 03:23:40AM] Cannot open store for class «_DS_HB_QF_HircinesVigil», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _DS_HB_QF_HircinesVigil referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_CACO_WellActivatorOptio_054E3D16», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_CACO_WellActivatorOptio_054E3D16 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF__DS_PerkCarcassFresh_01002E04», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF__DS_PerkCarcassFresh_01002E04 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «loverscomfortscanallscript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type loverscomfortscanallscript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_GrenadeScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_GrenadeScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_globals», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_globals referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_CON_CryptLore2_050A7E69», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_CON_CryptLore2_050A7E69 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript06», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript06 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread16», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread16 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_CON_Gatekeeper_050D06F3», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_CON_Gatekeeper_050D06F3 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_monsters», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_monsters referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread04», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread04 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_ALT_MidasTouch_050E9C58», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_ALT_MidasTouch_050E9C58 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodPlayerScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodPlayerScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTRealLifeDateQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTRealLifeDateQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PerkCon_Acolyte_05002DDA», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PerkCon_Acolyte_05002DDA referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript03», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript03 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortSlaveScene01», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortSlaveScene01 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript02», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript02 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «loverscomfortswingscr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type loverscomfortswingscr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF__DS_PerkCarcassEmpty_020215DD», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF__DS_PerkCarcassEmpty_020215DD referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_pet_finder», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_pet_finder referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread07», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread07 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread17», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread17 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTInGameDateQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTInGameDateQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_ENCH_Forbidden_0628E3BA», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_ENCH_Forbidden_0628E3BA referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_CACO_AlchMortarPestleMo_05237FDC», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_CACO_AlchMortarPestleMo_05237FDC referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_BloodExtractorScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_BloodExtractorScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_CACO_BloodHarvestPerk_050F8C7A», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_CACO_BloodHarvestPerk_050F8C7A referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread14», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread14 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «xCACOGrenadeMaintenanceScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type xCACOGrenadeMaintenanceScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «QF_CACOQuest_050A2A3F», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type QF_CACOQuest_050A2A3F referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACOBeehiveScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACOBeehiveScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_actions», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_actions referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread09», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread09 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_Con_AncientTongues_0500ADB4», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_Con_AncientTongues_0500ADB4 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_ILL_Geas_0509DC46», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_ILL_Geas_0509DC46 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «IMP_GivePerks», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type IMP_GivePerks referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTInGameClockQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTInGameClockQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_CON_GiftOfTheM_050D06FE», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_CON_GiftOfTheM_050D06FE referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread13», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread13 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript05», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript05 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «loverscomfortspousescr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type loverscomfortspousescr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF__DS_PerkCarcassMonster_02024BDB», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF__DS_PerkCarcassMonster_02024BDB referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «KRY__PRKF_CACO_HarvestFleshPe_0686474B», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type KRY__PRKF_CACO_HarvestFleshPe_0686474B referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread06», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread06 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortPlayerAliasScr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortPlayerAliasScr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread19», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread19 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread15», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread15 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread03», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread03 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_carcassarray», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_carcassarray referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread20», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread20 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CrucibleScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CrucibleScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_animals», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_animals referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_main», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_main referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_WellActivatorScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_WellActivatorScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_CACO_OrganHarvestPerk_053F5AD9», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_CACO_OrganHarvestPerk_053F5AD9 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread10», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread10 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortSwingScene», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortSwingScene referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_CON_ChosenDisc_05144FC4», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_CON_ChosenDisc_05144FC4 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_DS_HB_obj_HuntersBedroll», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _DS_HB_obj_HuntersBedroll referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_knives», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_knives referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «ARTH_WVA_ConfigMenu», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type ARTH_WVA_ConfigMenu referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AltFloraScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AltFloraScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_Con_BoneMaster_0500ADB2», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_Con_BoneMaster_0500ADB2 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread08», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread08 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread02», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread02 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortSwingScene02», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortSwingScene02 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread01», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread01 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «QF_CACO_UpdateQuestData_0572A798», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type QF_CACO_UpdateQuestData_0572A798 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript01», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript01 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «IMP__OnLoad», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type IMP__OnLoad referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread12», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread12 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread11», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread11 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CreatePotionPlayerScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CreatePotionPlayerScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_CookFoodQuestScript04», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_CookFoodQuestScript04 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread18», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread18 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_RES_Guardian1_050C13A6», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_RES_Guardian1_050C13A6 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTRealLifeClockQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTRealLifeClockQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortUtilScr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortUtilScr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTSymbolQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTSymbolQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AMOTMenuQuestScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AMOTMenuQuestScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortSwingScene03», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortSwingScene03 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «caco_adjustpotionthreadmanager», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type caco_adjustpotionthreadmanager referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_player», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_player referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «AKClotheDeadNPCSPlayerScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type AKClotheDeadNPCSPlayerScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «LoversComfortBrawlScr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type LoversComfortBrawlScr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «IMP_ArcaneStrikeQST», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type IMP_ArcaneStrikeQST referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_PlayerLoadGameAlias», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_PlayerLoadGameAlias referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_ILL_ShadowWeav_0514A0E0», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_ILL_ShadowWeav_0514A0E0 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread05», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread05 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_AdjustPotionThread», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_AdjustPotionThread referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_ds_hb_items», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _ds_hb_items referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] warning: Variable ::SLNC_var on script slac_utility has an invalid type slncmainquestscript loaded from save. This variable will be skipped.
[12/18/2018 — 03:23:40AM] Cannot open store for class «_DS_HB_MCM», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type _DS_HB_MCM referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «CACO_MCMScript», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type CACO_MCMScript referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF__DS_PerkCarcassClean_0201B484», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF__DS_PerkCarcassClean_0201B484 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «PRKF_IMP_PERK_CON_CryptLore_05093A28», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type PRKF_IMP_PERK_CON_CryptLore_05093A28 referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «loverscomfortconfigscr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type loverscomfortconfigscr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:40AM] Cannot open store for class «loverscomfortplayerscr», missing file?
[12/18/2018 — 03:23:40AM] warning: Unable to get type loverscomfortplayerscr referenced by the save game. Objects of this type will not be loaded.
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread12 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread10 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread16 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread18 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread08 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread15 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread11 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread14 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread20 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread09 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread07 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread04 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type caco_adjustpotionthreadmanager in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread13 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread19 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread17 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread06 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread03 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread05 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread01 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AdjustPotionThread02 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_pet_finder in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_GrenadeScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_MCMScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type QF_CACOQuest_050A2A3F in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CrucibleScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _DS_HB_QF_HircinesVigil in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF__DS_PerkCarcassMonster_02024BDB in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_CACO_OrganHarvestPerk_053F5AD9 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type KRY__PRKF_CACO_HarvestFleshPe_0686474B in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_CON_ChosenDisc_05144FC4 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_CON_Gatekeeper_050D06F3 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTMenuQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTRealLifeClockQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTInGameClockQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTRealLifeDateQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTInGameDateQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AMOTSymbolQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortSwingScene03 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type loverscomfortswingscr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type loverscomfortplayerscr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortSlaveScene01 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_Con_AncientTongues_0500ADB4 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_Con_BoneMaster_0500ADB2 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_CON_CryptLore2_050A7E69 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_ALT_MidasTouch_050E9C58 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type loverscomfortconfigscr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_ILL_ShadowWeav_0514A0E0 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_RES_Guardian1_050C13A6 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortSwingScene in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_CON_CryptLore_05093A28 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortUtilScr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_CON_GiftOfTheM_050D06FE in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_ILL_Geas_0509DC46 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PERK_ENCH_Forbidden_0628E3BA in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_IMP_PerkCon_Acolyte_05002DDA in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type loverscomfortscanallscript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortSwingScene02 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type IMP_GivePerks in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_WellActivatorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_CACO_WellActivatorOptio_054E3D16 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_items in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_knives in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_carcassarray in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_main in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_actions in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_globals in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_monsters in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_animals in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_CACO_BloodHarvestPerk_050F8C7A in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF_CACO_AlchMortarPestleMo_05237FDC in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF__DS_PerkCarcassFresh_01002E04 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript06 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript02 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript01 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript05 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript04 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodQuestScript03 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _DS_HB_MCM in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type QF_CACO_UpdateQuestData_0572A798 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF__DS_PerkCarcassEmpty_020215DD in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type PRKF__DS_PerkCarcassClean_0201B484 in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _DS_HB_obj_HuntersBedroll in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_PlayerLoadGameAlias in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type IMP_ArcaneStrikeQST in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortBrawlScr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type AKClotheDeadNPCSPlayerScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type LoversComfortPlayerAliasScr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type IMP__OnLoad in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CookFoodPlayerScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type xCACOGrenadeMaintenanceScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _ds_hb_player in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _DS_HB_obj_HuntersBedroll in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_CreatePotionPlayerScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type _DS_HB_obj_HuntersBedroll in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACOBeehiveScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_AltFloraScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type CACO_BloodExtractorScript in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type loverscomfortspousescr in the type table in save
[12/18/2018 — 03:23:41AM] warning: Could not find type ARTH_WVA_ConfigMenu in the type table in save
[12/18/2018 — 03:23:43AM] VM is thawing…
[12/18/2018 — 03:23:43AM] ERROR: File «Unofficial Skyrim Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() — «USLEEP_VersionTrackingAliasScript.psc» Line ?
[12/18/2018 — 03:23:43AM] ERROR: File «Unofficial Dawnguard Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() — «USLEEP_VersionTrackingAliasScript.psc» Line ?
[12/18/2018 — 03:23:43AM] ERROR: File «Unofficial Hearthfire Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() — «USLEEP_VersionTrackingAliasScript.psc» Line ?
[12/18/2018 — 03:23:43AM] ERROR: File «Unofficial Dragonborn Patch.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() — «USLEEP_VersionTrackingScript.psc» Line ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() — «USLEEP_VersionTrackingAliasScript.psc» Line ?
[12/18/2018 — 03:23:43AM] ERROR: Unable to call GetLocation — no native object bound to the script object, or object is of incorrect type
stack:
    [<NULL alias> (1) on <NULL quest> (00000000)].LocationAlias.GetLocation() — «<native>» Line ?
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.OnLocationChange() — «DLC1EclipseAttackPlayerScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: Unable to call UnregisterForAllModEvents — no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (0001A672)].XPMSEWeaponStyleScaleEffect.UnregisterForAllModEvents() — «<native>» Line ?
    [Active effect 4 on  (0001A672)].XPMSEWeaponStyleScaleEffect.Unregister() — «XPMSEWeaponStyleScaleEffect.psc» Line ?
    [Active effect 4 on  (0001A672)].XPMSEWeaponStyleScaleEffect.OnCellDetach() — «XPMSEWeaponStyleScaleEffect.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «CombatDramaOverhaul.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [alias Player on quest VL_Player (77023F14)].VL_Player.VLLoadGame() — «VL_Player.psc» Line ?
    [alias Player on quest VL_Player (77023F14)].VL_Player.OnPlayerLoadGame() — «VL_Player.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «Falskaar.esm» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «Wyrmstooth.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «Convenient Horse Herding.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «XFLMain.esm» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «UFO — Ultimate Follower Overhaul.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «3DNPC.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «HothFollower.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «CompanionValfar.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «CompanionArissa.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «SkyTEST-RealisticAnimals&Predators.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [CH (42020329)].chquestscript.GameLoaded() — «CHQuestScript.psc» Line ?
    [CH (42020329)].chquestscript.OnUpdate() — «CHQuestScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «AmazingFollowerTweaks.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [alias MT_Player on quest MT_Quest_PlayerFramework (7C00AA05)].MT_Ref_CompatibilityScript.MT_Compatibility() — «MT_Ref_CompatibilityScript.psc» Line ?
    [alias MT_Player on quest MT_Quest_PlayerFramework (7C00AA05)].MT_Ref_CompatibilityScript.OnPlayerLoadGame() — «MT_Ref_CompatibilityScript.psc» Line ?
[12/18/2018 — 03:23:46AM] ERROR: File «Chesko_Frostfall.esp» does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() — «<native>» Line ?
    [alias MT_Player on quest MT_Quest_PlayerFramework (7C00AA05)].MT_Ref_CompatibilityScript.MT_Compatibility() — «MT_Ref_CompatibilityScript.psc» Line ?
    [alias MT_Player on quest MT_Quest_PlayerFramework (7C00AA05)].MT_Ref_CompatibilityScript.OnPlayerLoadGame() — «MT_Ref_CompatibilityScript.psc» Line ?
[12/18/2018 — 03:23:47AM] ERROR: Static function ExecuteCommand not found on object consoleutil. Aborting call and returning None
stack:
    [zadQuest (1200F624)].zadbq00.checkBlindfoldDarkFog() — «zadBQ00.psc» Line ?
    [zadQuest (1200F624)].zadbq00.Maintenance() — «zadBQ00.psc» Line ?
    [alias Player on quest zadQuest (1200F624)].zadPlayerScript.OnPlayerLoadGame() — «zadPlayerScript.psc» Line ?
[12/18/2018 — 03:23:48AM] ERROR: Cannot call IsChild() on a None object, aborting function call
stack:
    [ (00000014)].Actor.IsInLocation() — «ObjectReference.psc» Line ?
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.OnLocationChange() — «DLC1EclipseAttackPlayerScript.psc» Line ?
[12/18/2018 — 03:23:48AM] warning: Assigning None to a non-object variable named «::temp55»
stack:
    [ (00000014)].Actor.IsInLocation() — «ObjectReference.psc» Line ?
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.OnLocationChange() — «DLC1EclipseAttackPlayerScript.psc» Line ?
[12/18/2018 — 03:23:48AM] ERROR: Unable to call GetOwningQuest — no native object bound to the script object, or object is of incorrect type
stack:
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.GetOwningQuest() — «<native>» Line ?
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.OnLocationChange() — «DLC1EclipseAttackPlayerScript.psc» Line ?
[12/18/2018 — 03:23:48AM] ERROR: Cannot call Stop() on a None object, aborting function call
stack:
    [<NULL alias> (164) on <NULL quest> (00000000)].DLC1EclipseAttackPlayerScript.OnLocationChange() — «DLC1EclipseAttackPlayerScript.psc» Line ?
[12/18/2018 — 03:23:48AM] ERROR: Method GetFormID not found on ARTH_WVA_ConfigMenu. Aborting call and returning None
stack:
    [SKI_ConfigManagerInstance (2A000802)].SKI_ConfigManager.Cleanup() — «SKI_ConfigManager.psc» Line ?
    [SKI_ConfigManagerInstance (2A000802)].SKI_ConfigManager.OnGameReload() — «SKI_ConfigManager.psc» Line ?
    [alias PlayerREF on quest SKI_ConfigManagerInstance (2A000802)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() — «SKI_PlayerLoadGameAlias.psc» Line ?
[12/18/2018 — 03:23:48AM] warning: Assigning None to a non-object variable named «::temp67»
stack:
    [SKI_ConfigManagerInstance (2A000802)].SKI_ConfigManager.Cleanup() — «SKI_ConfigManager.psc» Line ?
    [SKI_ConfigManagerInstance (2A000802)].SKI_ConfigManager.OnGameReload() — «SKI_ConfigManager.psc» Line ?
    [alias PlayerREF on quest SKI_ConfigManagerInstance (2A000802)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() — «SKI_PlayerLoadGameAlias.psc» Line ?
[12/18/2018 — 03:23:58AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].SOS_ActorMagicEffect_Script.RegisterForModEvent() — «<native>» Line ?
    [None].SOS_ActorMagicEffect_Script.OnEffectStart() — «SOS_ActorMagicEffect_Script.psc» Line ?
[12/18/2018 — 03:24:00AM] ERROR: Unable to call UnregisterForAllModEvents — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.UnregisterForAllModEvents() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:00AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:00AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:00AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call UnregisterForAllModEvents — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.UnregisterForAllModEvents() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call UnregisterForAllModEvents — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.UnregisterForAllModEvents() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?
[12/18/2018 — 03:24:01AM] ERROR: Unable to call RegisterForModEvent — no native object bound to the script object, or object is of incorrect type
stack:
    [None].CFEffectCreature.RegisterForModEvent() — «<native>» Line ?
    [None].CFEffectCreature.OnEffectStart() — «CFEffectCreature.psc» Line ?

Эту часть лога даже разбирать нет смысла — видно, что много срача от Complete Alcheming and Cookies Overhaul


Как правило, ошибки callfunction-stack.as вызваны повреждением или отсутствием файла связанного LXFDVD118, а иногда — заражением вредоносным ПО. Основной способ решить эти проблемы вручную — заменить файл AS новой копией. Запуск сканирования реестра после замены файла, из-за которого возникает проблема, позволит очистить все недействительные файлы callfunction-stack.as, расширения файлов или другие ссылки на файлы, которые могли быть повреждены в результате заражения вредоносным ПО.

В таблице ниже представлен список доступных для загрузки файлов callfunction-stack.as, подходящих для большинства версий Windows (включая %%os%%). Если у нас нет необходимой копии версии callfunction-stack.as, вы можете просто нажать кнопку Request (Запрос), чтобы её запросить. В некоторых случаях, чтобы получить необходимую версию файла, вам может потребоваться связаться непосредственно с Future Publishing.

Если вы успешно заменили соответствующий файл в соответствующем месте, у вас больше не должно возникать проблем, связанных с callfunction-stack.as. Однако мы рекомендуем выполнить быструю проверку, чтобы окончательно в этом убедиться. Повторно запустите LXFDVD118, чтобы убедиться в успешном решении проблемы.

Callfunction-stack.as Описание файла
Тип: AS
Категория: software collection
Application: LXFDVD118
Версия выпуска: May 2009
Разработчик: Future Publishing
 
Имя файла: callfunction-stack.as  

KB: 626
SHA-1: c6854c7b77d267bd15d87dcd39dd5d68e15ed988
MD5: c97f0d26faf012f915a3c9a3d6bef42d
CRC32: 870fa1b6

Продукт Solvusoft

Загрузка
WinThruster 2023 — Сканировать ваш компьютер на наличие ошибок реестра в callfunction-stack.as

Windows
11/10/8/7/Vista/XP

Установить необязательные продукты — WinThruster (Solvusoft) | Лицензия | Политика защиты личных сведений | Условия | Удаление

AS
callfunction-stack.as

Идентификатор статьи:   809670

Callfunction-stack.as

Имя файла ID Размер Загрузить
+ callfunction-stack.as c97f0d26faf012f915a3c9a3d6bef42d 626.00 B
Application LXFDVD118 May 2009
Автор Future Publishing
Версия ОС Linux
Тип 64-разрядная (x64)
Размер (в байтах) 626
MD5 c97f0d26faf012f915a3c9a3d6bef42d
Контрольная сумма SHA1 c6854c7b77d267bd15d87dcd39dd5d68e15ed988
CRC32: 870fa1b6

Ошибки Callfunction-stack.as

Лучшие ошибки callfunction-stack.as с LXFDVD118 в Windows:

  • «Ошибка в файле Callfunction-stack.as.»
  • «Отсутствует файл Callfunction-stack.as.»
  • «Отсутствует файл callfunction-stack.as.»
  • «Не удалось загрузить callfunction-stack.as. «
  • «Ошибка регистрации: callfunction-stack.as. «
  • «Ошибка времени выполнения — callfunction-stack.as. «
  • «Ошибка загрузки callfunction-stack.as.»

Проблемы, связанные с Callfunction-stack.as, иногда связанные с LXFDVD118, возникают во время запуска/завершения работы, во время запуска программы, связанной с Callfunction-stack.as, или редко во время процесса установки Windows. Выделение при возникновении ошибок callfunction-stack.as имеет первостепенное значение для поиска причины проблем LXFDVD118 и сообщения о них вFuture Publishing за помощью.

Источники проблем Callfunction-stack.as

Заражение вредоносными программами, недопустимые записи реестра LXFDVD118 или отсутствующие или поврежденные файлы callfunction-stack.as могут создать эти ошибки callfunction-stack.as.

В частности, проблемы callfunction-stack.as, созданные:

  • Поврежденные ключи реестра Windows, связанные с callfunction-stack.as / LXFDVD118.
  • Вирус или вредоносное ПО, повреждающее callfunction-stack.as.
  • callfunction-stack.as злонамеренно или ошибочно удален другим программным обеспечением (кроме LXFDVD118).
  • Другое программное приложение, конфликтующее с callfunction-stack.as.
  • Поврежденная загрузка или неполная установка программного обеспечения LXFDVD118.

#python #tensorflow #machine-learning #keras

#python #тензорный поток #машинное обучение #keras

Вопрос:

У меня есть набор данных с 565 функциями и 10 различными столбцами на сайте прогнозирования для прогнозирования меток в обучающей модели.Вот сводные размеры модели :

 _________________________________________________________________
Model: "sequential"
_________________________________________________________________
Layer (type)                 Output Shape              Param #
=================================================================
conv1d (Conv1D)              (None, 563, 64)           256
_________________________________________________________________
flatten (Flatten)            (None, 36032)             0
_________________________________________________________________
dense (Dense)                (None, 50)                1801650
_________________________________________________________________
dense_1 (Dense)              (None, 50)                2550
_________________________________________________________________
dense_2 (Dense)              (None, 50)                2550
_________________________________________________________________
dense_3 (Dense)              (None, 50)                2550
_________________________________________________________________
dense_4 (Dense)              (None, 10)                510
=================================================================
Total params: 1,810,066
Trainable params: 1,810,066
Non-trainable params: 0
 

Типы данных набора данных и нулевые значения в каждом столбце :

 0      float64
1      float64
2      float64
3      float64
4      float64
        ...
570    float64
571    float64
572    float64
573    float64
574    float64
Length: 575, dtype: object
0      0
1      0
2      0
3      0
4      0
      ..
570    0
571    0
572    0
573    0
574    0
Length: 575, dtype: int64
 

размеры набора данных: (41490, 575).Ошибка отображается следующим образом :

 _________________________________________________________________
Epoch 1/10
^M  1/332 [..............................] - ETA: 0s - loss: 6.7792 - accuracy: 0.0100 - precision: 0.0112Traceback (most recent call last):
  File "parallelised_script_realdata2.py", line 68, in <module>
    results = model.fit(train_X,train_y,validation_split = 0.2,epochs=10,batch_size = 100)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/keras/engine/training.py", line 108, in _method_wrapper
    return method(self, *args, **kwargs)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/keras/engine/training.py", line 1098, in fit
    tmp_logs = train_function(iterator)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/def_function.py", line 780, in __call__
    result = self._call(*args, **kwds)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/def_function.py", line 807, in _call
    return self._stateless_fn(*args, **kwds)  # pylint: disable=not-callable
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/function.py", line 2829, in __call__
    return graph_function._filtered_call(args, kwargs)  # pylint: disable=protected-access
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/function.py", line 1848, in _filtered_call
    cancellation_manager=cancellation_manager)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/function.py", line 1924, in _call_flat
    ctx, args, cancellation_manager=cancellation_manager))
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/function.py", line 550, in call
    ctx=ctx)
  File "/usr/local/lib64/python3.6/site-packages/tensorflow/python/eager/execute.py", line 60, in quick_execute
    inputs, attrs, num_outputs)
tensorflow.python.framework.errors_impl.InvalidArgumentError:  assertion failed: [predictions must be >= 0] [Condition x >= y did not hold element-wise:] [x (sequential/dense_4/Softmax:0) = ] [[-nan -nan -nan...]...] [y (Cast_6/x:0) = ] [0]
         [[{{node assert_greater_equal/Assert/AssertGuard/else/_21/assert_greater_equal/Assert/AssertGuard/Assert}}]] [Op:__inference_train_function_1270]

Function call stack:
train_function
 

Вот код :

 from sklearn.preprocessing import LabelEncoder
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, Conv1D, Flatten
from tensorflow.keras import optimizers
import numpy as np
from sklearn.metrics import confusion_matrix
import time
import tensorflow as tf
import pandas as pd
import tensorflow.keras.metrics

data = pd.read_csv('Step1_reducedfile.csv',skiprows = 1,header = None)
data = data.sample(frac=1).reset_index(drop=True)
data = data.to_numpy()
train_X = data[0:data.shape[0],0:565]
train_y = data[0:data.shape[0],565:data.shape[1]]
train_X = train_X.reshape((train_X.shape[0], train_X.shape[1], 1))
             
import random
neurons = 50
strategy = tensorflow.distribute.MirroredStrategy()
with strategy.scope():
    model = tf.keras.Sequential([
      tf.keras.layers.Conv1D(64,kernel_size = 3,activation='relu',input_shape=train_X.shape[1:]),
      tf.keras.layers.Flatten(),
      tf.keras.layers.Dense(neurons,activation='relu'),
      tf.keras.layers.Dense(neurons,activation='relu'),
      tf.keras.layers.Dense(neurons,activation='relu'),
      tf.keras.layers.Dense(neurons,activation='relu'),
      tf.keras.layers.Dense(10, activation='softmax'),])
    model.summary()
    sgd = optimizers.SGD(lr=0.05, decay=1e-6, momentum=0.24, nesterov=True)
    model.compile(loss='categorical_crossentropy',optimizer=sgd,metrics=['accuracy',tensorflow.keras.metrics.Precision()])
    
    model.summary()
    results = model.fit(train_X,train_y,validation_split = 0.2,epochs=10,batch_size = 100)
    print(results)
 

Комментарии:

1. Ошибка предполагает, что что-то не так в последнем слое вашей модели (dense_4). Можете ли вы проверить свои метки на наличие 1) значений Nan 2) Значений < 0

2. Да, есть значения < 0. Что мне делать? Я не могу их удалить..

3. Я заменил отрицательные значения на ноль (только для пробной версии), но, тем не менее, проблема сохраняется.

4. Вы создаете классификатор, которому нужны помеченные данные. Эти значения должны быть целыми числами => 0. Имеющиеся у вас отрицательные значения должны быть сопоставлены с этими целыми числами. Вы также хотели бы удалить значения NaN или null из вашего набора данных.

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Ошибка c2200 додж калибр
  • Ошибка call of duty warzone сетевые службы недоступны