-
Content Count
12 -
Joined
-
Last visited
-
trying to make a data set on elite slayer tasks, if you would like to help this is the public form. you don't have to give exact time and token values but include at least rough estimates, but try to give accurate task length, npc name, and keys from that task. https://docs.google.com/spreadsheets/d/1NM_pcfk9gdOVoL2rdYxHjHlj3Ife_Sn898c91ADJV5M/edit?usp=sharing
-
as the function stands the way I wrote it; it assumes the default avg thc content by weight of your first strain is 20% or 0.2, next for my intended use it assumes the second strain is a cbd strain and under .3% thc or 0.003. the function is as follows mathematically: {b1*(g)+b2*(h)} / { g+h } in python: ############################################################################################################### '''thc calculator by weight {b1*(g)+b2*(h)} / { g+h }''' ############################################################################################################### def avgTHC(thcBud=0.2,cbdBud=0.003,thcWeight=0.5,cbdWeight=0.5) : calc = ((thcBud*(thcWeight) + cbdBud*(cbdWeight)) / (thcWeight + cbdWeight)) precent = str(int(round(calc,2) * 100)) + '%' print('thc content: ', ('THC bud= ' + str(thcBud)), ('CBD bud= ' + str(cbdBud)) + '\n' + 'bud weight: ', ('THC bud= ' + str(thcWeight)), ('CBD bud= ' + str(cbdWeight)) + '\n' + 'avg THC content: ' + precent) the return format from the print statement looks like: to use in a script avgTHC(thcBud=b1,cbdBud=b2,thcWeight=g,cbdWeight=h) where the b1,b2 ect. are your values
-
last post here unless you guys wanna see more but i did fine tuning and its much more coherent now:
- 1 reply
-
- 1
-
-
So I'm a little bit of a nerd and am starting to learn Tensorflow, long story short I managed to merge 2 different peoples 2-3 year old repositories for an AI text generator based on openai's GPT-2 model. So now I have an AI I can create custom data sets for based on any large collect of text. I need a bit of practice making high quality training data so if you have any ideas about a large corpus of text data about specific topics or people let me know! Here's a sample based on 30 songs from the UnderAchivers, I had it write a verse. its not great but its not bad either, let me know if you wanna see computers talk more gibberish. I have it set up in a docker container, so if your interested in trying yourself I can push that to docker or pm me and ill send you my GitHub repository. I don't wanna give that link out to everyone because I still write shit code, and am very self conscious about it.
- 1 reply
-
- 1
-
-
Terpy changed their profile photo
-
So there a a few reasons why your client wont launch, some of which are harder to explain the others. A common issue is file association and if you dont know how to change that or dont care to, these 3 lines of text will launch your client: where clientName.jar is the name of your client Version either gamepack+.jar or gamepack.jar save that in a notepad document and change the .txt file extension to .bat. Then place the bat file in your cache at users/userName/.SimplicityCache I dont know if this kind of post is okay but i couldnt seem to find the right person to ask about that, best of luck everyone! if you have python this works just as well with Popen, possibly an option if your not on windows. just change the arguments in p: from subprocess import Popen, PIPE, STDOUT p = Popen(['java', '-jar', 'gamepack.jar'], stdout=PIPE, stderr=STDOUT) for line in str(p.stdout) print(line)
-
i really like this idea as well less worrying that its actually working, immediate confrontation its done something on the UI.
-
The idea i have is pretty simple in theory, Ring of Bosses picks up every item that is dropped from a boss, instead allow the holder to filter a list of 2-3 items to be picked up automatically maybe even allowing for presets for specific bosses like Hydra, Vorkath, and Zulrah. It could result in less junk items banked, and the streamlining of teleing in and out of bosses quickly without dropping useless items between kills. All in all it would make looting even faster and probably increase the value of the ring without a technical buff to the item its self.