Pi beta phi handshake

Greek Life

2010.12.09 15:05 KillahHills10304 Greek Life

All Greek-related ideas, activities, events, advice, and information belong in this subreddit.
[link]


2012.01.14 08:16 NYUSkulls Phi Kappa Sigma

A subreddit dedicated to the brothers, both active and alumni, of the Phi Kappa Sigma International Fraternity.
[link]


2012.06.23 08:56 Awolter Phi Kappa Theta

[link]


2024.05.21 04:42 OwnKing6338 Raspberry Pi Reasoning Cluster

Raspberry Pi Reasoning Cluster
I thought I’d share some pictures of a project I did a few months back involving Raspberry Pi 5s and LLMs. My goal was to create a completely self contained reasoning cluster. The idea being that you could take the system with you out into the field and have your own private inference platform.
The pictures show two variants of the system I built. The large one is comprised of 20 raspberry pi 5s in a hardened 6U case. The whole system weighs in at around 30lbs and cost about $2500 to build. The smaller system has 5 raspberry pi 5s and comes in a 3U soft sided case that will fit in an airplane overhead. Cost to build that system is around $1200.
All of the pi’s use PoE hats for power and each system has one node with a 1tb SSD that acts as the gateway for the cluster. This gateway is running a special server I built that acts as a load balancer for the cluster. This server implements OpenAIs REST protocol so you can connect to the cluster with any OSS client that supports OpenAIs protocol.
I have each node running mistral-7b-instruct-v0.2 which yields a whopping 2 tokens/second and I’ve tried phi-2 which bumps that around 5 tokens/second. Phi-2 didn’t really work for my use case but I should give Phi-3 a try.
Each inference node of the cluster is relatively slow but depending on your workload you can run up to 19 inferences in parallel. A lot of mine can run in parallel so while it’s slow it worked for my purposes.
I’ve since graduated to a rig with 2 RTX 4090s that blows the throughput of this system out of the water but this was a super fun project to build so thought I’d share.
submitted by OwnKing6338 to LocalLLaMA [link] [comments]


2024.05.21 01:15 SkierChamp Guess it’s finally my turn to be the EA employee on here. Was genuinely just stunned after this 86x2

Guess it’s finally my turn to be the EA employee on here. Was genuinely just stunned after this 86x2 submitted by SkierChamp to fut [link] [comments]


2024.05.20 20:00 NoSoyVerde1 Congratulations! you just got accepted into the foundation as a MTF recruit, which one are you joining? why?

Congratulations! you just got accepted into the foundation as a MTF recruit, which one are you joining? why? submitted by NoSoyVerde1 to SCP [link] [comments]


2024.05.20 14:38 RedditorLocal we need to call it kappa it sounds cooler

we need to call it kappa it sounds cooler submitted by RedditorLocal to namesoundalikes [link] [comments]


2024.05.20 00:16 Ok_Employ_2414 My first published Python project for transient analysis

Hi fellow engineers,
I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
This transformation is applied to signal processing, analyzing transient changes of a signal during very short-time. Some special use case can be in power system signal, or Geophysical signal analysis, or MRI ... Also, the comparison with Wavelet Transform has been shown. (which shows more potential in detecting transient changes)
I would highly appreciate some feedback, before progressing further. Thanks a lot.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to ECE [link] [comments]


2024.05.20 00:15 Ok_Employ_2414 My first Python project for voltage disturbance analysis

Hi fellow engineers,
I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
This transformation is applied to signal processing, analyzing transient changes of a signal during very short-time. Some special use case can be in power system signal, or Geophysical signal analysis, or MRI ... Also, the comparison with Wavelet Transform has been shown. (which shows more potential in detecting transient changes)
I would highly appreciate some feedback, before progressing further. Thanks a lot.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to ElectricalEngineering [link] [comments]


2024.05.20 00:08 Ok_Employ_2414 First time public a Python package for Hyperbolic S-transform

I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
This transformation is applied to signal processing, analyzing transient changes of a signal during very short-time. Some special use case can be in power system signal, or Geophysical signal analysis, or MRI ... Also, the comparison with Wavelet Transform has been shown. (which shows more potential in detecting transient changes)
I would highly appreciate some feedback, before progressing further. Thanks a lot.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to signalprocessing [link] [comments]


2024.05.20 00:05 Ok_Employ_2414 First time publishing in Pypi and looking for any feedback

I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
I would highly appreciate some feedback, before progressing further. Looking forward to feedback on code, suggestions for improvements, bug reports, or unit test ...
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to opensource [link] [comments]


2024.05.20 00:00 Ok_Employ_2414 First time publish a package in Pypi

I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
I would highly appreciate some feedback, before progressing further.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to learnpython [link] [comments]


2024.05.19 23:58 Ok_Employ_2414 HS-transform, python package for hyperbolic S-transform in signal processing

I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
I would highly appreciate some feedback, before progressing further.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to madeinpython [link] [comments]


2024.05.19 23:56 Ok_Employ_2414 HS-transform, python package for hyperbolic S-transform in signal processing

I made a python package for S-transform with Hyperbolic window (Hyperbolic S-transform or HSTransform package). This is my first time publishing a python package, so the project is still far from stable and still under beta release.
I would highly appreciate some feedback, before progressing further.
HSTransform is available on pypi.
Link to source code in github

Quick Usage

import numpy as np from hstransform import HSTransform # Create input signal (for example: Voltage signal) t = np.linspace(0, 10, 100) # timeseries V_m = 220*np.sqrt(2) # peak voltage f_V = 50 # frequency phi_V = 0 # phase V_clean = V_m * np.sin(2 * np.pi * f_V * t + phi_V) # Create voltage sag/dip (80% of the nominal voltage for 0.15 second) V_sag = np.where((t >= 2) & (t <= 3.5), 0.5 * V_clean, V_clean) # Create an instance of HSTransform hs = HSTransform() # Perform the transform signal = V_sag S_transformed = hs.fit_transform(t, signal) 
submitted by Ok_Employ_2414 to Python [link] [comments]


2024.05.19 22:23 Master-Ad6944 Phi Beta Kappa

I’ve searched some stuff up about phi beta kappa, but I’m still skeptical. Is it really worth joining. UCI apparently covers the fee.
submitted by Master-Ad6944 to UCI [link] [comments]


2024.05.19 21:12 _matttt_ PiHole 6: setting "min-cache-ttl" still possible?

Hello everyone,
Is it still possible to set a custom "min-cache-ttl" in, for example, /etc/dnsmasq.d/yourname.conf using Pi-hole 6? At the beginning of this beta, this entry was ignored and flagged as an issue.
The "dns.cache.optimizer" setting does not meet my needs for modifying the TTL.
Thank you for your help!
submitted by _matttt_ to pihole [link] [comments]


2024.05.19 20:20 Weekly_Ad_4498 Help me with this one pls

Help me with this one pls submitted by Weekly_Ad_4498 to comfyui [link] [comments]


2024.05.19 19:47 Anonymous__710 Got him from the icon pick but don’t play a LW, will he be decent to sub on at CAM or nah?

Got him from the icon pick but don’t play a LW, will he be decent to sub on at CAM or nah? submitted by Anonymous__710 to fut [link] [comments]


2024.05.19 19:43 Weekly_Ad_4498 Please Can someone help me setup a comfy ui or with this trouble

Please Can someone help me setup a comfy ui or with this trouble
Im having this trouble right now, everytime i solve one i end up with new problem. Help me with this pls
https://preview.redd.it/k14ra2i57f1d1.png?width=2279&format=png&auto=webp&s=7a288c691fd62065ccb0ce9d037f8746e7cbcfaf
submitted by Weekly_Ad_4498 to comfyui [link] [comments]


2024.05.19 14:37 YoungManiac01 Fcking finally!! Do your 82 picks

Fcking finally!! Do your 82 picks
1250 82+ picks, idk how many hundreds of exchanges, 1000 80+ picks, didn't pack a single player worth over 100k...and then this happens.
Also have his 91 and even tho im not using him kept him in hope it might help pack a 'duplicate'.
Can rest finally.
Idk if it was worth the trouble, will see how broken is he.
submitted by YoungManiac01 to fut [link] [comments]


2024.05.19 07:46 bazmonkey A prometheus exporter for pi-hole version 6

I just wanted to share a prometheus exporter I've been working on that uses the new API in the version 6 beta of pi-hole:
https://github.com/bazmonk/pihole6_exporter
I've also got a dashboard that uses most of the metrics. I just updated the screenshots but the dashboard listing is slow to update. If you click on it in the next few hours and only see one screenshot, that's the old one.
Why another pihole exporter? People have written a bunch already...
Two reasons: first, I couldn't find one that uses the new API in the upcoming version 6. It's undergone a lot of changes. This one uses HTTPS and possibly an app token.
Second, an annoying thing I find in a lot of the existing exporters is that they only provide the per-24h stats that the admin dashboard mostly uses. Tracking that number over time is useless. You see a lot of the "ads blocked over time" graphs are jagged lines instead of increasing ones... that's because they're actually reporting the ads blocked over the last 24h (to the hour), which makes it jump down every hour and never go up overall. With only rolling 24h stats it's difficult/impossible to derive what was actually happening over time.
So, in addition to reporting those numbers (for use as quick-stats), I'm also collecting the counts of queries by [client, type, status, response, upstream destination] per minute, so that you can actually look up how many queries of some kind happened over arbitrary amounts of time, as opposed to merely what the 24h count was at that time. You can look at the cumulative stats and aggregate stats-over-time for the hour, the week, etc. It's simply more useful data.
What's Prometheus?
It's a system for gathering metrics (numerical data) off computers and putting it into a time-series database for analyzing and looking for trends/problems/etc. Usually it's used along with grafana (a web app for making pretty graphs and dashboards based off that data), and it's often used alongside Loki (a similar system for gathering log data). Folks also use it to generate alerts (e.g. I get slack alerts if I have updates available, or if a user is logged in, or if available memory is too low or CPU pressure too high too long).
While you can host your own prometheus/loki/grafana servers (it's open-source), Grafana also offers a cloud service that hosts it for you. The free plan (free-free: don't gotta give them payment method or anything) is plenty of space for a few raspberry pi and their logs. They also offer Grafana Alloy, an agent that handles sending up your data securely so you don't have to deal with that aspect. AND, they have a pre-built Raspberry Pi integration that is pre-configured and ready to go. If you go that route, in the README I include a sample blurb you can put into the Alloy configuration to use this exporter along with it.
Aaaanyway, any feedback is welcome!
submitted by bazmonkey to pihole [link] [comments]


2024.05.19 02:38 Greedy-Hospital3701 Honors Society

Does being in Phi Beta Kappa really do anything in terms of admission?
submitted by Greedy-Hospital3701 to premed [link] [comments]


2024.05.19 00:17 Honkaloid free Pi-Phi!

Just wanted to show how fast I could make a Phi-ntagon!! Take that long winded blowhards!!
https://youtu.be/s1BifR3j9cc
submitted by Honkaloid to SacredGeometry [link] [comments]


2024.05.18 23:57 Vegetable_Dig1860 Ti-89 Titanium coordinate conversion ( analytical geometry I think)

Hi guys! So I have this vector [-3,4,-1] in Cartesian (Rectangular). Usually, when changing Cartesian to Cylindrical for phi, you use arctan (y/x). With this formula, you would do arctan (4/(-3)). When I use the Ti function to convert from Cartesian to Rectangular, however, the calculator gives me a result of arctan(3/4) + pi/2. My question is, where does this come from!? Is it correct? Thx!
submitted by Vegetable_Dig1860 to Geometry [link] [comments]


2024.05.18 22:25 Rossa2313 FO4 keeps crashing

FO4 keeps crashing submitted by Rossa2313 to Fallout4Mods [link] [comments]


http://swiebodzin.info