- IDataView (ML.NET)
- .NET for Apache Spark
- FSharp.Data
- Deedle
- Deedle
#r "nuget:Microsoft.ML" | |
#r "nuget:Microsoft.ML.Vision" | |
#r "nuget:Microsoft.ML.ImageAnalytics" | |
#r "nuget:SciSharp.TensorFlow.Redist" | |
open System | |
open System.IO | |
open Microsoft.ML | |
open Microsoft.ML.Data | |
open Microsoft.ML.Vision |
sudo apt update && sudo apt install git dkms | |
cd Downloads | |
git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git | |
unofficial | |
cd rtlwifi_new | |
make | |
sudo make install |
//Try this | |
type Folder = { | |
Name:string | |
Size:int64 | |
NumFiles:int64 | |
AvgSize:float | |
DistinctExt:string list | |
} | |
open System.IO |
/* | |
write a program that outputs the largest unique set of characters that can be removed | |
from this paragraph without letting its length drop below 50. | |
For example: [‘H’, ‘i’, ‘!’, ‘ ’] | |
*/ | |
//Exception based on paragraph length | |
function ParagraphLengthException(message){ | |
this.name = "ParagraphLengthException" | |
this.message = message; |
using System; | |
namespace authtest | |
{ | |
class AccessToken | |
{ | |
public string access_token { get; set; } | |
public string token_type { get; set; } | |
public long expires_in { get; set; } | |
} |