AayushMathur commited on
Commit
f24e967
1 Parent(s): a0e3d4c

Update dataset with Alpaca formatted entries

Browse files
Files changed (2) hide show
  1. test.csv +52 -0
  2. train.csv +0 -0
test.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ instruction,output,input
2
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=ORANGE) self.add(pentagon) self.play(pentagon.animate.rotate(-90 * DEGREES), run_time=2)",Rotate the pentagon by 90 degrees counterclockwise over 2 seconds.
3
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=4, height=2) rectangle.move_to((1, 1)) self.add(rectangle)","Create a rectangle with width 4 and height 2, centered at (1, 1)."
4
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): circle = Circle() triangle = Polygon((-1, -1), (1, -1), (0, 1)) vgroup = VGroup(circle, triangle) self.add(vgroup)",Create a VGroup and add a circle and a triangle to it.
5
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): circle = Circle() triangle = Polygon((-1, -1), (1, -1), (0, 1)) vgroup = VGroup(circle, triangle) vgroup.rotate(-45 * DEGREES) self.add(vgroup)",Rotate the VGroup by 45 degrees clockwise over 1.5 seconds.
6
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=YELLOW) self.add(hexagon)",Create a regular hexagon with side length 2 and color it yellow.
7
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=YELLOW) self.add(hexagon) self.play(hexagon.animate.shift(LEFT * 2), run_time=1)",Move the hexagon to the left by 2 units over 1 second.
8
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=3, color=GREEN) self.add(heptagon)",Create a regular heptagon with side length 3 and color it green.
9
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=3, color=GREEN) self.add(heptagon) self.play(heptagon.animate.rotate(-60 * DEGREES), run_time=2)",Rotate the heptagon by 60 degrees counterclockwise over 2 seconds.
10
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=PURPLE) self.add(line)","Create a line segment from (-3, 0) to (3, 0) and color it purple."
11
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=PURPLE) self.add(line) self.play(line.animate.shift(UP * 2), run_time=1)",Move the line segment upwards by 2 units over 1 second.
12
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = RegularPolygon(n=3, radius=3, color=PINK) self.add(triangle)",Create an equilateral triangle with side length 3 and color it pink.
13
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=3, color=BLUE) self.add(circle)",Create a circle with radius 3 and color it blue.
14
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=3, color=BLUE) self.add(circle) self.play(circle.animate.shift(RIGHT * 2), run_time=1)",Move the circle to the right by 2 units over 1 second.
15
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): square = Square(side_length=4, color=RED) self.add(square)",Create a square with side length 4 and color it red.
16
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): square = Square(side_length=4, color=RED) self.add(square) self.play(square.animate.scale(2), run_time=2)",Scale the square by a factor of 2 in 2 seconds.
17
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=5, height=3) self.add(rectangle)","Create a rectangle with width 5 and height 3, centered at (0, 0)."
18
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=5, height=3) self.add(rectangle) self.play(rectangle.animate.rotate(-90 * DEGREES), run_time=1.5)",Rotate the rectangle by 90 degrees counterclockwise over 1.5 seconds.
19
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)","Create a line segment from (-2, -2) to (2, 2)."
20
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.shift(RIGHT * 3), run_time=1)",Move the line segment to the right by 3 units over 1 second.
21
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = RegularPolygon(n=3, radius=2, color=YELLOW) self.add(triangle)",Create an equilateral triangle with side length 2 and color it yellow.
22
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = RegularPolygon(n=3, radius=2, color=YELLOW) self.add(triangle) self.play(triangle.animate.scale(2), run_time=2)",Scale the triangle by a factor of 2 in 2 seconds.
23
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): point = Dot((1, 1), color=TEAL) self.add(point)","Create a point at coordinates (1, 1) and color it teal."
24
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=GREEN) self.add(pentagon)",Create a regular pentagon with side length 2 and color it green.
25
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=GREEN) self.add(pentagon) self.play(pentagon.animate.rotate(-45 * DEGREES), run_time=1)",Rotate the pentagon by 45 degrees counterclockwise over 1 second.
26
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=4, height=6, color=PURPLE) self.add(ellipse)","Create an ellipse with x-radius 2 and y-radius 3, centered at the origin."
27
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=4, height=6, color=PURPLE) self.add(ellipse) self.play(ellipse.animate.shift(UP * 2), run_time=1.5)",Move the ellipse up by 2 units over 1.5 seconds.
28
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=ORANGE) self.add(hexagon)",Create a regular hexagon with side length 2 and color it orange.
29
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=ORANGE) self.add(hexagon) self.play(hexagon.animate.scale(2), run_time=2)",Scale the hexagon by a factor of 2 in 2 seconds.
30
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): point = Dot((0, 0), color=PINK) self.add(point)","Create a point at coordinates (0, 0) and color it pink."
31
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=BROWN) self.add(octagon)",Create a regular octagon with side length 2 and color it brown.
32
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=BROWN) self.add(octagon) self.play(octagon.animate.rotate(-60 * DEGREES), run_time=1)",Rotate the octagon by 60 degrees counterclockwise over 1 second.
33
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): tetradecagon = RegularPolygon(n=14, radius=2, color=GRAY) self.add(tetradecagon)",Create a regular tetradecagon with side length 2 and color it gray.
34
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): tetradecagon = RegularPolygon(n=14, radius=2, color=GRAY) self.add(tetradecagon) self.play(tetradecagon.animate.shift(DOWN * 3), run_time=2)",Move the tetradecagon down by 3 units over 2 seconds.
35
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (3, 0), color=GREEN) self.add(line)","Create a line segment from (0, 0) to (3, 0)."
36
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (3, 0), color=GREEN) self.add(line) self.play(line.animate.shift(UP * 2), run_time=1.5)",Move the line segment up by 2 units over 1.5 seconds.
37
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = Polygon((-2, 0), (2, 0), (0, 3), color=YELLOW) self.add(triangle)",Create an isosceles triangle with base length 4 and height 3.
38
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = Polygon((-2, 0), (2, 0), (0, 3), color=YELLOW) self.add(triangle) self.play(triangle.animate.rotate(90 * DEGREES), run_time=1)",Rotate the triangle by 90 degrees clockwise over 1 second.
39
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=CYAN) self.add(heptagon)",Create a regular heptagon with side length 2 and color it cyan.
40
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=CYAN) self.add(heptagon) self.play(heptagon.animate.scale(2), run_time=2)",Scale the heptagon by a factor of 2 in 2 seconds.
41
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=PURPLE) self.add(dodecagon)",Create a regular dodecagon with side length 2 and color it purple.
42
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=PURPLE) self.add(dodecagon) self.play(dodecagon.animate.shift(LEFT * 4), run_time=2)",Move the dodecagon to the left by 4 units over 2 seconds.
43
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): pentadecagon = RegularPolygon(n=15, radius=2, color=CYAN) self.add(pentadecagon)",Create a regular pentadecagon with side length 2 and color it cyan.
44
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): pentadecagon = RegularPolygon(n=15, radius=2, color=CYAN) self.add(pentadecagon) self.play(pentadecagon.animate.rotate(-120 * DEGREES), run_time=1)",Rotate the pentadecagon by 120 degrees counterclockwise over 1 second.
45
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((1, -1), (3, -3), color=GREEN) self.add(line)","Create a line segment from (1, -1) to (3, -3)."
46
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): line = Line((1, -1), (3, -3), color=GREEN) self.add(line) self.play(line.animate.shift(DOWN * 2), run_time=1.5)",Move the line segment down by 2 units over 1.5 seconds.
47
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = Polygon((-2.5, 0), (2.5, 0), (0, 4), color=YELLOW) self.add(triangle)",Create an isosceles triangle with base length 5 and height 4.
48
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): triangle = Polygon((-2.5, 0), (2.5, 0), (0, 4), color=YELLOW) self.add(triangle) self.play(triangle.animate.rotate(45 * DEGREES), run_time=1)",Rotate the triangle by 45 degrees clockwise over 1 second.
49
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): nonagon = RegularPolygon(n=9, radius=2, color=MAGENTA) self.add(nonagon)",Create a regular nonagon with side length 2 and color it magenta.
50
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): nonagon = RegularPolygon(n=9, radius=2, color=MAGENTA) self.add(nonagon) self.play(nonagon.animate.scale(2), run_time=2)",Scale the nonagon by a factor of 2 in 2 seconds.
51
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): icosagon = RegularPolygon(n=20, radius=2, color=YELLOW) self.add(icosagon)",Create a regular icosagon with side length 2 and color it yellow.
52
+ "Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.","from manim import * class MyScene(Scene): def construct(self): icosagon = RegularPolygon(n=20, radius=2, color=YELLOW) self.add(icosagon) self.play(icosagon.animate.shift(RIGHT * 3), run_time=1.5)",Move the icosagon to the right by 3 units over 1.5 seconds.
train.csv ADDED
The diff for this file is too large to render. See raw diff