{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "9b748dac",
"metadata": {},
"outputs": [],
"source": [
"from openai import OpenAI\n",
"from dotenv import load_dotenv \n",
"import glob\n",
"import json\n",
"import os\n",
"from pydantic import BaseModel\n",
"from openai import BadRequestError\n",
"\n",
"client = OpenAI(base_url=\"https://dashscope.aliyuncs.com/compatible-mode/v1\",\n",
" api_key=os.getenv(\"BAILIAN_API_KEY\"))\n"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "1bc6689d",
"metadata": {},
"outputs": [],
"source": [
"\n",
"\n",
"def chatFunc(contant: str):\n",
" try:\n",
" completion = client.chat.completions.create(\n",
" # 模型列表:https://help.aliyun.com/zh/model-studio/getting-started/models\n",
" model=\"qwen3-4b\",\n",
" messages=[\n",
" # {\"role\": \"system\", \"content\": \"You are a helpful assistant.Determine whether the sentiment of the user's input is positive or negative.Note that only positive or negative values are output\"},\n",
" {\"role\": \"system\", \"content\": \"You are a helpful assistant. Determine whether the sentiment entered by the user is positive or negative. Note that only positive or negative cases are output.Avoid being ambiguous pleases.\"},\n",
" {\"role\": \"user\", \"content\": contant},\n",
" ],\n",
" extra_body={\"enable_thinking\": False},\n",
" )\n",
" json_str = completion.model_dump_json()\n",
" data = json.loads(json_str)\n",
" real_content = data['choices'][0]['message']['content']\n",
" print(real_content)\n",
" return real_content\n",
" except BadRequestError:\n",
" print(\"文本内容不当:::::>\"+contant)\n",
" return \"Contant Error\"\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "59951b54",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"找到文件: ../../data/acllmdb_sentiment_small/negative\\0_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\100_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\101_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\102_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\103_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\104_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\105_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\106_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\107_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\108_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\109_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\10_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\110_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\111_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\112_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\113_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\114_2.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\115_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\116_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\117_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\118_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\119_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\11_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\120_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\12_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\13_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\14_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\15_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\16_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\17_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\18_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\19_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\1_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\20_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\21_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\22_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\23_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\24_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\25_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\26_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\27_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\28_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\29_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\2_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\30_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\31_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\32_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\33_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\34_1.txt\n",
"文本内容不当:::::>Jacqueline Hyde starts like any other normal day for telemarketing individual Jackie Hyde (co-producer Gabriella Hall) until her boss (Robert Donovan) fires her for taking personal calls at work, however it's not all bad news as the call she took was from a lawyer informing her that her Grandfather (Malcolm Bennett) has recently died & that he left her his mansion & fortune (why doesn't stuff like that ever happen to me? Sigh). Very excited Jackie heads on over there & makes herself right at home, while looking for the thermostat late one night Jackie stumbles upon a secret room where her Grandfather stashes the bright red formula that he invented that allows whoever drinks it to change their appearance. Being a bit on the porky side Jackie finally settles on the glamorous Jacqueline (Blythe Metz), however Jackie's better looking alter-ego starts to take control...
Written, co-produced & directed by Rolfe Kanefsky I thought Jacqueline Hyde was complete total & utter crap from start to finish & it's as simple & straight forward as that. According to the opening credits Jacqueline Hyde was 'inspired' by the classic Robert Louis Stevenson novel 'The Strange Case of Dr. Jekyll and Mr. Hyde', frankly if Mr. Stevenson could see what was being done to his story here he'd turn in his grave. For a start I think Jacqueline Hyde was/is intended to be a horror film, the IMDb certainly lists it as such but there isn't any horror in it at all apart from just how bad it is. I would say that Jacqueline Hyde is more a soft-core porno than anything else & extremely tame with it, why sit down & watch this softer than soft porno crap when you can watch you proper hard-core stuff that actually delivers the goods? Why, that's the question I ask here. It's not even good porn either, besides being far too soft it's dull, boring & the not-worth-mentioning sex scenes are few & far between. The most intelligent aspect of this film is the title which would have been quite clever if not for the fact that another film used the Jacqueline Hyde (1998) title during the last century & judging by the IMDb's plot summary it sounds a hell of a lot better than this piece of rubbish. This is one of those films you have to watch yourself to see just how bad it is but just hope that you never get the opportunity.
Director Kanefsky was obviously working on a low budget but that's not an excuse these days, shot on a digital camcorder the film looks cheap & the few instances of CGI look like they came from a Nintendo Gameboy, the final 'shocking' twist has probably the worst morph effect I've ever seen & is pretty good for a laugh as is the scene when Jackie's breasts grow via more terrible CGI. That's another thing, the film takes itself far too seriously. The subject matter sucks, is far too predictable & makes for a poor film but maybe if the dialogue had been intentionally funny with some dirty porn talk the film might have been more fun to watch, alas it isn't so it isn't. Forget about any decent horror, violence or gore as there isn't any apart from a surprisingly bloodless decapitation at the end.
Technically Jacqueline Hyde is home made film type stuff, the photography is of the flat hand held point-&-shoot variety, the music, production design & special effects are of a suitably low standard to match the script. The acting was awful, seriously this is bad.
Jacqueline Hyde in my opinion a load of crap, there is not one positive thing about this turgid film that I can think of. Any proper film lover will have an almost impossible time trying to find any redeeming value in this crap, definitely one to avoid.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\35_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\36_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\37_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\38_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\39_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\3_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\40_4.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\41_4.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\42_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\43_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\44_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\45_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\46_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\47_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\48_4.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\49_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\4_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\50_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\51_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\52_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\53_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\54_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\55_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\56_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\57_4.txt\n",
"文本内容不当:::::>generally speaking I don't make negative comments on here. But since this is a festival piece, I don't want you to waste your time when you could see something else that might not be playing again.
I thought the actors were pretty bad. For instance, they totally didn't play off each other, rather, they waited to RECITE their lines which were pretty poor to begin with. The dialogue sounded really forced. Norman or whatever his name tried, or so it would appear, to be witty and biting in the lines he chose but just fell really short.
After words he asked if anyone saw the ending coming and some people were all \"yea\", and he all but called them liars. Look there were so many clues, the biggest being a briefcase full of cash for a $500 an hour whore. I mean the john gave her at least 20g's... tell tale sign. Now no you couldn't see exactly what was going to happen but by the time the twist actually occurred, I for one, didn't even care. I was just glad to get out of there. I asked him which draft he shot and he said 8.1, maybe next time he will wait to shoot 'til 15.3 cause this needed a lot of work.
But he seemed like a fairly nice guy, he is making his own films, he'll probably get better and I hope he does, not in a snotty way either, I mean it, I wish him luck. Just remember, this is just my opinion.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\58_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\59_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\5_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\60_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\61_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\62_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\63_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\64_3.txt\n",
"文本内容不当:::::>This only gets bashed because it stars David Hasselhoff. Well, then let me bash it to. Compared to the garbage they call horror coming out nowadays, this film isn't too bad. It has the beautiful Leslie Cumming. She is super hot, but can't talk very well. There is a great scene with her when she is supernaturally raped. She shows off her nice body. Linda Blair does nothing here as well as Hasselhoff. 3/10\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\65_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\66_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\67_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\68_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\69_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\6_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\70_1.txt\n",
"文本内容不当:::::>Witchcraft/Witchery/La Casa 4/ and whatever else you wish to call it. How about..Crud.
A gathering of people at a Massachusetts island resort are besieged by the black magic powers of an evil witch killing each individual using cruel, torturous methods. Photographer Gary(David Hasselhoff)is taking pictures for Linda(Catherine Hickland whose voice and demeanor resemble EE-YOR of the Winnie the Poo cartoon), a virgin studying witchcraft, on the island resort without permission. Rose Brooks(Annie Ross, portraying an incredibly rude bitch)is interested in perhaps purchasing the resort and, along with husband Freddie(Robert Champagne, who is always ogling other women much younger than him), pregnant daughter Jane(Linda Blair)and grandson Tommy(Michael Manchester, who just looks bored throughout, probably wanting to watch Sesame Street instead of starring in this rubbish), go by boat to the resort being treated to a look at the property by Realtor Tony Giordano's son Jerry(Rick Farnsworth), obviously a pup in the business getting his feet wet. Along with these folks is architect Leslie(Leslie Cumming, whose character is a nympho)who might help Rose re-design the resort. The boat's captain is killed by The Lady in Black(Hildegard Knef, wearing her make-up and lip-stick extra thick)and a storm is brewing. The boat drives off by itself(..guided by the invisible power of The Lady in Black, I guess)with everyone stuck in the decrepit resort, which is in dire need of repairs. Most of the victims, before meeting their grisly fates are carried through a type of red wormhole whose vortex leads to another dimension(..perhaps a type of hell or something)where they are tortured by these fiends dressed in raggedy clothes with a crummy visage. One victim has her mouth sown before being hung upside down in a chimney, roasted as the others light the fireplace. One poor soul is tortured by harsh twistings of rope wrapped tightly around her flesh before being found hanging from the snout of a swordfish penetrating through her neck. One fellow is slowly suffocating as his veins bulge(..and bleed) and neck's blood vessels burst squirting in Hasselhoff's face! One fellow is crucified with nails hammered into his hands before being hung upside down over an open flame. Blair's pregnant victim becomes possessed with her hair standing on end speaking in another woman's voice. One is raped by this demonic man with a \"diseased\" mouth as the hellish hobos stand nearby gleefully cheering. The film, despite it's excesses, is mostly dull fodder for those who really wish to see the lowest point in the careers of Hasselhoff and Blair, who deserve better than this. Almost unbearable at times, building little-to-no suspense. Clumsy execution of the death sequences which look cheap and laughable. Sure some gore is okay, but most of the film shows victims after they've been run through the ringer. We do get a chance to see pregnant women(..who look exactly like stuntmen in costume with bad wigs) jumping out three story windows. Oh, and The Lady in Black's reflected face often pops up on inanimate objects for characters to see. Tommy has a little Sesame Street recorder which tapes The Lady in Black's mumbo jumbo chants, obviously used for later. For some reason, The Lady in Black likes to visit little Tommy. He's not at all scared of her, for Tommy's just too bored to show any expression on his face, much less fear. Need I say more? This one's a real stinker. Ugh.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\71_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\72_4.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\73_4.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\74_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\75_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\76_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\77_2.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\78_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\79_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\7_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\80_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\81_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\82_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\83_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\84_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\85_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\86_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\87_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\88_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\89_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\8_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\90_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\91_4.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\92_1.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\93_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\94_2.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\95_3.txt\n",
"negative\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\96_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\97_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\98_1.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\99_3.txt\n",
"Negative.\n",
"找到文件: ../../data/acllmdb_sentiment_small/negative\\9_4.txt\n",
"negative\n"
]
}
],
"source": [
"negative_txt_files = glob.glob('../../data/acllmdb_sentiment_small/negative/*.txt', recursive=True)\n",
"res_list = []\n",
"fail_txt_list = []\n",
"count = 0.0\n",
"ca = 0.0\n",
"for index, file_path in enumerate(negative_txt_files, start=0):\n",
" print(f\"找到文件: {file_path}\")\n",
" count+=1\n",
" with open(file_path, 'r', encoding='utf-8') as f:\n",
" content = f.read() # 读取所有内容\n",
" res = chatFunc(content)\n",
" if 'negative' in res or 'Negative' in res: \n",
" ca+=1\n",
" else:\n",
" fail_txt_list.append(res+content)\n",
" res_list.append(res)\n",
"\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "d2be8866",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Contant ErrorJacqueline Hyde starts like any other normal day for telemarketing individual Jackie Hyde (co-producer Gabriella Hall) until her boss (Robert Donovan) fires her for taking personal calls at work, however it's not all bad news as the call she took was from a lawyer informing her that her Grandfather (Malcolm Bennett) has recently died & that he left her his mansion & fortune (why doesn't stuff like that ever happen to me? Sigh). Very excited Jackie heads on over there & makes herself right at home, while looking for the thermostat late one night Jackie stumbles upon a secret room where her Grandfather stashes the bright red formula that he invented that allows whoever drinks it to change their appearance. Being a bit on the porky side Jackie finally settles on the glamorous Jacqueline (Blythe Metz), however Jackie's better looking alter-ego starts to take control...
Written, co-produced & directed by Rolfe Kanefsky I thought Jacqueline Hyde was complete total & utter crap from start to finish & it's as simple & straight forward as that. According to the opening credits Jacqueline Hyde was 'inspired' by the classic Robert Louis Stevenson novel 'The Strange Case of Dr. Jekyll and Mr. Hyde', frankly if Mr. Stevenson could see what was being done to his story here he'd turn in his grave. For a start I think Jacqueline Hyde was/is intended to be a horror film, the IMDb certainly lists it as such but there isn't any horror in it at all apart from just how bad it is. I would say that Jacqueline Hyde is more a soft-core porno than anything else & extremely tame with it, why sit down & watch this softer than soft porno crap when you can watch you proper hard-core stuff that actually delivers the goods? Why, that's the question I ask here. It's not even good porn either, besides being far too soft it's dull, boring & the not-worth-mentioning sex scenes are few & far between. The most intelligent aspect of this film is the title which would have been quite clever if not for the fact that another film used the Jacqueline Hyde (1998) title during the last century & judging by the IMDb's plot summary it sounds a hell of a lot better than this piece of rubbish. This is one of those films you have to watch yourself to see just how bad it is but just hope that you never get the opportunity.
Director Kanefsky was obviously working on a low budget but that's not an excuse these days, shot on a digital camcorder the film looks cheap & the few instances of CGI look like they came from a Nintendo Gameboy, the final 'shocking' twist has probably the worst morph effect I've ever seen & is pretty good for a laugh as is the scene when Jackie's breasts grow via more terrible CGI. That's another thing, the film takes itself far too seriously. The subject matter sucks, is far too predictable & makes for a poor film but maybe if the dialogue had been intentionally funny with some dirty porn talk the film might have been more fun to watch, alas it isn't so it isn't. Forget about any decent horror, violence or gore as there isn't any apart from a surprisingly bloodless decapitation at the end.
Technically Jacqueline Hyde is home made film type stuff, the photography is of the flat hand held point-&-shoot variety, the music, production design & special effects are of a suitably low standard to match the script. The acting was awful, seriously this is bad.
Jacqueline Hyde in my opinion a load of crap, there is not one positive thing about this turgid film that I can think of. Any proper film lover will have an almost impossible time trying to find any redeeming value in this crap, definitely one to avoid.\n",
"Contant Errorgenerally speaking I don't make negative comments on here. But since this is a festival piece, I don't want you to waste your time when you could see something else that might not be playing again.
I thought the actors were pretty bad. For instance, they totally didn't play off each other, rather, they waited to RECITE their lines which were pretty poor to begin with. The dialogue sounded really forced. Norman or whatever his name tried, or so it would appear, to be witty and biting in the lines he chose but just fell really short.
After words he asked if anyone saw the ending coming and some people were all \"yea\", and he all but called them liars. Look there were so many clues, the biggest being a briefcase full of cash for a $500 an hour whore. I mean the john gave her at least 20g's... tell tale sign. Now no you couldn't see exactly what was going to happen but by the time the twist actually occurred, I for one, didn't even care. I was just glad to get out of there. I asked him which draft he shot and he said 8.1, maybe next time he will wait to shoot 'til 15.3 cause this needed a lot of work.
But he seemed like a fairly nice guy, he is making his own films, he'll probably get better and I hope he does, not in a snotty way either, I mean it, I wish him luck. Just remember, this is just my opinion.\n",
"Contant ErrorThis only gets bashed because it stars David Hasselhoff. Well, then let me bash it to. Compared to the garbage they call horror coming out nowadays, this film isn't too bad. It has the beautiful Leslie Cumming. She is super hot, but can't talk very well. There is a great scene with her when she is supernaturally raped. She shows off her nice body. Linda Blair does nothing here as well as Hasselhoff. 3/10\n",
"Contant ErrorWitchcraft/Witchery/La Casa 4/ and whatever else you wish to call it. How about..Crud.
A gathering of people at a Massachusetts island resort are besieged by the black magic powers of an evil witch killing each individual using cruel, torturous methods. Photographer Gary(David Hasselhoff)is taking pictures for Linda(Catherine Hickland whose voice and demeanor resemble EE-YOR of the Winnie the Poo cartoon), a virgin studying witchcraft, on the island resort without permission. Rose Brooks(Annie Ross, portraying an incredibly rude bitch)is interested in perhaps purchasing the resort and, along with husband Freddie(Robert Champagne, who is always ogling other women much younger than him), pregnant daughter Jane(Linda Blair)and grandson Tommy(Michael Manchester, who just looks bored throughout, probably wanting to watch Sesame Street instead of starring in this rubbish), go by boat to the resort being treated to a look at the property by Realtor Tony Giordano's son Jerry(Rick Farnsworth), obviously a pup in the business getting his feet wet. Along with these folks is architect Leslie(Leslie Cumming, whose character is a nympho)who might help Rose re-design the resort. The boat's captain is killed by The Lady in Black(Hildegard Knef, wearing her make-up and lip-stick extra thick)and a storm is brewing. The boat drives off by itself(..guided by the invisible power of The Lady in Black, I guess)with everyone stuck in the decrepit resort, which is in dire need of repairs. Most of the victims, before meeting their grisly fates are carried through a type of red wormhole whose vortex leads to another dimension(..perhaps a type of hell or something)where they are tortured by these fiends dressed in raggedy clothes with a crummy visage. One victim has her mouth sown before being hung upside down in a chimney, roasted as the others light the fireplace. One poor soul is tortured by harsh twistings of rope wrapped tightly around her flesh before being found hanging from the snout of a swordfish penetrating through her neck. One fellow is slowly suffocating as his veins bulge(..and bleed) and neck's blood vessels burst squirting in Hasselhoff's face! One fellow is crucified with nails hammered into his hands before being hung upside down over an open flame. Blair's pregnant victim becomes possessed with her hair standing on end speaking in another woman's voice. One is raped by this demonic man with a \"diseased\" mouth as the hellish hobos stand nearby gleefully cheering. The film, despite it's excesses, is mostly dull fodder for those who really wish to see the lowest point in the careers of Hasselhoff and Blair, who deserve better than this. Almost unbearable at times, building little-to-no suspense. Clumsy execution of the death sequences which look cheap and laughable. Sure some gore is okay, but most of the film shows victims after they've been run through the ringer. We do get a chance to see pregnant women(..who look exactly like stuntmen in costume with bad wigs) jumping out three story windows. Oh, and The Lady in Black's reflected face often pops up on inanimate objects for characters to see. Tommy has a little Sesame Street recorder which tapes The Lady in Black's mumbo jumbo chants, obviously used for later. For some reason, The Lady in Black likes to visit little Tommy. He's not at all scared of her, for Tommy's just too bored to show any expression on his face, much less fear. Need I say more? This one's a real stinker. Ugh.\n"
]
}
],
"source": [
" \n",
"for fail_txt in fail_txt_list:\n",
" print(fail_txt)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "84552ed7",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"count::>121.0 ac:::>117.0 accuracy:::>0.9669421487603306\n"
]
}
],
"source": [
"print(\"count::>\" + str(count) + \" ac:::>\" + str(ca) + \" accuracy:::>\" + str(ca/count))\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4090ed7e",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "2d45f99e",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "ai-learning",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}