Channel Updates!!!
9:28
6 жыл бұрын
Пікірлер
@KWhite-f5e
@KWhite-f5e Ай бұрын
Jackson Steven Taylor Eric Gonzalez Michelle
@PlatimaTinkers
@PlatimaTinkers 3 ай бұрын
Never used an eGPU before - great to see how it all fits together. Cheers for that!
@PlatimaTinkers
@PlatimaTinkers 3 ай бұрын
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
@amielwexler1165
@amielwexler1165 5 ай бұрын
thanks
@sunilkumarvengalil2305
@sunilkumarvengalil2305 5 ай бұрын
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.
@hixidom2274
@hixidom2274 5 ай бұрын
Really great. Gonna test this out and throw a FFT on it if it works
@christiancompiles
@christiancompiles 5 ай бұрын
Thank you for an explanation that I can understand and visualize!
@rolandmackintosh5163
@rolandmackintosh5163 5 ай бұрын
great memes dude
@mariopendragon5373
@mariopendragon5373 6 ай бұрын
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
@emrullahcelik1084
@emrullahcelik1084 8 ай бұрын
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
@yuntaoyang8603
@yuntaoyang8603 9 ай бұрын
so cool , thanks for your share
@ewandao2630
@ewandao2630 9 ай бұрын
Amazing! As of 2024, is there any other better way for very large data real-time 3D visualization?
@hoteny
@hoteny 11 ай бұрын
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
@baghdadiabdellatif1581 Жыл бұрын
Thank you Great work 👌👏
@baghdadiabdellatif1581
@baghdadiabdellatif1581 Жыл бұрын
07:47 the amplitude is 255 not 256. Thank you 🙏
@huyphanducnhat1609
@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
@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
@LimboPurgatory Жыл бұрын
2:53
@red2fire2
@red2fire2 Жыл бұрын
This is the video that started it all for me, glad to be back.
@colinmahoney6812
@colinmahoney6812 Жыл бұрын
Great video, thank you :)
@hoangtrong7351
@hoangtrong7351 Жыл бұрын
how to run project help me pls
@samueleaton8116
@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
@perorbem Жыл бұрын
Thank you for this straightforward and very well-explained video, it helped a ton!
@dbf72829
@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
@leo6557 Жыл бұрын
Hello! Has the lenovo x260 an expresscard slot too?
@mwandjakaluta4285
@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
@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
@Patiencelad Жыл бұрын
Mark. This was a super helpful video. Thanks so much! I learned a lot, and will be using it today!
@Seii__
@Seii__ Жыл бұрын
does this works if i install ubuntu 22.10?
@MarkJay
@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
@Casper-bs2qz Жыл бұрын
can we pickle a csv file?
@joaobatistaful
@joaobatistaful Жыл бұрын
Very good work
@tedsheridan8725
@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
@MarkJay Жыл бұрын
openGL should be faster, even with the integrated graphics on the mac mini
@BN-hy1nd
@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
@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
@aryanattri7252 Жыл бұрын
Could you post a video on how to plot the approximations?
@NameIsRAYNY
@NameIsRAYNY Жыл бұрын
I have thinkpad T430, Can I use mPcie Version? The Expresscard version is hard to find in my country
@briansmithchuquirunaleon8180
@briansmithchuquirunaleon8180 2 жыл бұрын
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.
@briansmithchuquirunaleon8180
@briansmithchuquirunaleon8180 2 жыл бұрын
A dropout layer is always before a flatten layer?
@KakashiHatake-vv4cw
@KakashiHatake-vv4cw 2 жыл бұрын
i couldnt find script package
@emintavlayan
@emintavlayan 2 жыл бұрын
this is great. Thank you
@gat0tsu
@gat0tsu 2 жыл бұрын
what kind of microphone did you use and did you have problems with an onboard filter?
@sholpanaghayeva6710
@sholpanaghayeva6710 2 жыл бұрын
I did not find the package script
@Creem16
@Creem16 2 жыл бұрын
rip
@ygjt76v0-----
@ygjt76v0----- 2 жыл бұрын
temp very hight!
@MarkJay
@MarkJay 2 жыл бұрын
Its fine for a thinkpad
@ygjt76v0-----
@ygjt76v0----- 2 жыл бұрын
@@MarkJay idle very hight, when load 🤔🔥
@rec-trick
@rec-trick 2 жыл бұрын
how to add autotune with realtime ?
@lillianl.644
@lillianl.644 2 жыл бұрын
I searched 'script' in 'install', but why there's nothing for python?? help😭😭😭have stuck here for several days now😢😢😢
@mhaddadi
@mhaddadi 2 жыл бұрын
Tesorflow to predict stock price, possible?
@amithadole9252
@amithadole9252 2 жыл бұрын
Hello sir, Please help me to recognise the position of human like siting, standing or running on video
@kontranorth6159
@kontranorth6159 2 жыл бұрын
holy shit thank you for this
@johnnegus9741
@johnnegus9741 2 жыл бұрын
Hey any advice on the T470 Lenovo? Can it be done? 32GB ram i7 7600U