Never used an eGPU before - great to see how it all fits together. Cheers for that!
@PlatimaTinkers3 ай бұрын
Hey mate cheers for the follow! I know the grind can hurt, but would love to see more content from you if you ever get the time again Take it easy
@amielwexler11655 ай бұрын
thanks
@sunilkumarvengalil23055 ай бұрын
Great post. Well presented. I was looking for a way to process a live audio stream. This video will help a lot. Thank Mark for this video.
@hixidom22745 ай бұрын
Really great. Gonna test this out and throw a FFT on it if it works
@christiancompiles5 ай бұрын
Thank you for an explanation that I can understand and visualize!
@rolandmackintosh51635 ай бұрын
great memes dude
@mariopendragon53736 ай бұрын
for anyone wondering how to speed it up, increase self.phase in the update function. .05 gets you approximately the same speed as this video
@emrullahcelik10848 ай бұрын
hi. ı have to use tf-gpu 1.5 version. so ı m following your video. hovewer my rtx 3050 is not supported by cuda toolkit 9.0. But tf-gpu 1.5 is supporting cuda 9 and cudnn 7. What can ı do now
@yuntaoyang86039 ай бұрын
so cool , thanks for your share
@ewandao26309 ай бұрын
Amazing! As of 2024, is there any other better way for very large data real-time 3D visualization?
@hoteny11 ай бұрын
So if you have discontinuity, then you apply a window function like hann, right? I dont know a lot but moving it instead felt weird. (7:50)
@baghdadiabdellatif1581 Жыл бұрын
Thank you Great work 👌👏
@baghdadiabdellatif1581 Жыл бұрын
07:47 the amplitude is 255 not 256. Thank you 🙏
@huyphanducnhat1609 Жыл бұрын
great series,but i wonder a student laptop can run it without nvidia cuda?,spec:asus laptop with i9 13900H +16gb ddr4 ,no gpu
@KaleenBhaiya-hg7jq Жыл бұрын
Bro I Have Lenovo Thinkpad L430 3110m Core i3 3rd Gen Laptop Can O Use External Graphic Card And Which Graphic Card I Used
@LimboPurgatory Жыл бұрын
2:53
@red2fire2 Жыл бұрын
This is the video that started it all for me, glad to be back.
@colinmahoney6812 Жыл бұрын
Great video, thank you :)
@hoangtrong7351 Жыл бұрын
how to run project help me pls
@samueleaton8116 Жыл бұрын
Recommendations: use np.frombuffer(data, dtype=np.int16) instead of the struct method use rfft instead of fft to make things faster use the matplotlib FuncAnimation to update the graph periodically (much cleaner) use rfftfreq(chunk, 1/sample_rate) to get the x-coords for correct frequency bins
@perorbem Жыл бұрын
Thank you for this straightforward and very well-explained video, it helped a ton!
@dbf72829 Жыл бұрын
Thanks my uni doens't teach but expects us to do the homeworks if it weren't for you I'll be wrecked by now❤
@leo6557 Жыл бұрын
Hello! Has the lenovo x260 an expresscard slot too?
@mwandjakaluta4285 Жыл бұрын
Paste this into your Jupyter. You will see something cool trust me. 😇 import plotly.graph_objs as go from plotly.subplots import make_subplots import numpy as np # Lorenz attractor parameters sigma = 10 rho = 28 beta = 8/3 # Initial conditions x0, y0, z0 = (1, 1, 1) # Time vector t = np.arange(0, 100, 0.01) # Lorenz attractor function def lorenz(x, y, z, sigma=sigma, rho=rho, beta=beta): x_dot = sigma * (y - x) y_dot = x * (rho - z) - y z_dot = x * y - beta * z return x_dot, y_dot, z_dot # Integrate the Lorenz system using Euler's method xs = np.zeros_like(t) ys = np.zeros_like(t) zs = np.zeros_like(t) xs[0], ys[0], zs[0] = (x0, y0, z0) for i in range(1, len(t)): x_dot, y_dot, z_dot = lorenz(xs[i-1], ys[i-1], zs[i-1]) xs[i] = xs[i-1] + (x_dot * dt) ys[i] = ys[i-1] + (y_dot * dt) zs[i] = zs[i-1] + (z_dot * dt) # Create 3D plot of Lorenz attractor fig = make_subplots(rows=1, cols=1, specs=[[{'type': 'scatter3d'}]]) fig.add_trace(go.Scatter3d(x=xs, y=ys, z=zs, mode='lines', line=dict(color='blue', width=2)), row=1, col=1) fig.update_layout(scene=dict(xaxis_title='X', yaxis_title='Y', zaxis_title='Z'), title='Lorenz Attractor in 3D') fig.show()
@thshm2938 Жыл бұрын
import numpy as np from scipy.misc import derivative def f(x): return np.log(x) x1 = 1.01 x = np.linspace(0.2, 2, 500) m = derivative(f, x1, dx=0.1) for n in range(6): xn = x1 -( f(x1) / m) print(xn) x1 = xn
@Patiencelad Жыл бұрын
Mark. This was a super helpful video. Thanks so much! I learned a lot, and will be using it today!
@Seii__ Жыл бұрын
does this works if i install ubuntu 22.10?
@MarkJay Жыл бұрын
There might be a newer version of NCSDK that works with 22.10. The install shell script had a version check, so you might be able to comment that out. Thats how I got it work with Ubuntu 18.04
@Casper-bs2qz Жыл бұрын
can we pickle a csv file?
@joaobatistaful Жыл бұрын
Very good work
@tedsheridan8725 Жыл бұрын
I'm running (what I believe) is a fairly basic 3D parametric surface, that morphs with a slider. I'm using Matplotlib, and it's pretty laggy (plot doesn't transition smoothly with the slider). Would OpenGL work for this? Running on a Mac mini, so GPU isn't great.
@MarkJay Жыл бұрын
openGL should be faster, even with the integrated graphics on the mac mini
@BN-hy1nd Жыл бұрын
Oops excuse typos from comment earlier below I am getting C:\Users\becon>conda create -n py310_test python=310 anaconda Collecting package metadata (current_repodata.json): failed
@BN-hy1nd Жыл бұрын
Hello. I am new to python as my first language What if I want to update the python on Spyder from 3.8 to 3.10 say? I get C:\Users\becon>conda create -n py310_test python=3.10 Collecting package metadata (current_repodata.json): failed Any help will be appreciated
@aryanattri7252 Жыл бұрын
Could you post a video on how to plot the approximations?
@NameIsRAYNY Жыл бұрын
I have thinkpad T430, Can I use mPcie Version? The Expresscard version is hard to find in my country
@briansmithchuquirunaleon81802 жыл бұрын
When we run 3 epochs in the training then, is there different choose neurons in each epoch?. In other words 3 diferents combinations of neurons in each epoch, which is consequence of dropout.
@briansmithchuquirunaleon81802 жыл бұрын
A dropout layer is always before a flatten layer?
@KakashiHatake-vv4cw2 жыл бұрын
i couldnt find script package
@emintavlayan2 жыл бұрын
this is great. Thank you
@gat0tsu2 жыл бұрын
what kind of microphone did you use and did you have problems with an onboard filter?
@sholpanaghayeva67102 жыл бұрын
I did not find the package script
@Creem162 жыл бұрын
rip
@ygjt76v0-----2 жыл бұрын
temp very hight!
@MarkJay2 жыл бұрын
Its fine for a thinkpad
@ygjt76v0-----2 жыл бұрын
@@MarkJay idle very hight, when load 🤔🔥
@rec-trick2 жыл бұрын
how to add autotune with realtime ?
@lillianl.6442 жыл бұрын
I searched 'script' in 'install', but why there's nothing for python?? help😭😭😭have stuck here for several days now😢😢😢
@mhaddadi2 жыл бұрын
Tesorflow to predict stock price, possible?
@amithadole92522 жыл бұрын
Hello sir, Please help me to recognise the position of human like siting, standing or running on video
@kontranorth61592 жыл бұрын
holy shit thank you for this
@johnnegus97412 жыл бұрын
Hey any advice on the T470 Lenovo? Can it be done? 32GB ram i7 7600U